Base:
method
GetChild
System.Windows.Forms.AccessibleObject.GetChild(System.Int32)
4 references to GetChild
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObject.cs (4)
246return index == -1 || index == lastChildIndex ? null : GetChild(index + 1); 256return index <= 0 ? null : GetChild(index - 1); 299=> GetChildCount() > 0 ? GetChild(0) : null; 303? GetChild(count - 1)