NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

AccessibleObject.GetChild

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;

Parameters

index
[To be supplied.]

See Also

AccessibleObject Class | AccessibleObject Members | System.WinForms Namespace