Given a zero-based index, returns an accessible child corresponding to that index. This function does nothing by default. If accessible objects want to provide custom accessible children, then this function should be overridden. If the index is invalid, then the function should return null. If this function is overridden, then GetChildCount() should also be overridden.
[Visual Basic] Overridable Public Function GetChild( _ ByVal index As Integer _ ) As AccessibleObject [C#] public virtual AccessibleObject GetChild( int index ); [C++] public: virtual AccessibleObject* GetChild( int index ); [JScript] public function GetChild( index : int ) : AccessibleObject;
AccessibleObject Class | AccessibleObject Members | System.WinForms Namespace