DataGridColumnStyle::CreateHeaderAccessibleObject Method ()

 
Use BaseTrue

Gets the AccessibleObject for the column.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

protected:
virtual AccessibleObject^ CreateHeaderAccessibleObject()

Return Value

Type: System.Windows.Forms::AccessibleObject^

An AccessibleObject for the column.

This property is called by a DataGridTableStyle when its System.Windows.Forms::DataGrid property changes. This property is required because any child controls hosted by a DataGridColumnStyle must be added to the System.Windows.Forms::DataGrid control's ControlCollection.

The following code example gets the System.Windows.Forms::DataGrid of a DataGridColumnStyle.

private:
   void GetDataGrid( DataGridTableStyle^ thisColumn )
   {
      DataGrid^ myDataGrid;

      // Get the DataGrid of the column.
      myDataGrid = thisColumn->DataGrid;
   }

.NET Framework
Available since 1.1
Return to top
Show: