Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ RecurseFindValue()

static object System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.RecurseFindValue ( DesignerOptionCollection options)
inlinestaticprivate

Definition at line 212 of file DesignerOptionService.cs.

213 {
214 if (options._value != null)
215 {
216 return options._value;
217 }
218 foreach (DesignerOptionCollection option in options)
219 {
220 object obj = RecurseFindValue(option);
221 if (obj != null)
222 {
223 return obj;
224 }
225 }
226 return null;
227 }
DesignerOptionCollection(DesignerOptionService service, DesignerOptionCollection parent, string name, object value)

References System.obj, System.options, and System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.RecurseFindValue().

Referenced by System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.RecurseFindValue(), and System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.ShowDialog().