DataGridView.DataGridViewAccessibleObject.GetChild(Int32) Method
Definition
Returns the child accessible object corresponding to the specified index.
public:
override System::Windows::Forms::AccessibleObject ^ GetChild(int index);
public override System.Windows.Forms.AccessibleObject GetChild (int index);
public override System.Windows.Forms.AccessibleObject? GetChild (int index);
override this.GetChild : int -> System.Windows.Forms.AccessibleObject
Public Overrides Function GetChild (index As Integer) As AccessibleObject
Parameters
- index
- Int32
The zero-based index of the child accessible object.
Returns
An AccessibleObject that represents the child accessible object corresponding to the specified index.
Remarks
The GetChild method returns an accessible object for the row of DataGridViewColumnHeaderCell objects when ColumnHeadersVisible is true
and index
is 0. If ColumnHeadersVisible is false
and index
is 0, GetChild returns an accessible object for the first DataGridViewRow.