DataGridView::RowHeadersDefaultCellStyle Property
Gets or sets the default style applied to the row header cells.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property DataGridViewCellStyle^ RowHeadersDefaultCellStyle { DataGridViewCellStyle^ get(); void set(DataGridViewCellStyle^ value); }
Property Value
Type: System.Windows.Forms::DataGridViewCellStyle^The DataGridViewCellStyle that represents the default style applied to the row header cells.
The default DataGridViewCellStyle returned by this property has the following initial property values.
DataGridViewCellStyle property | Default value |
|---|---|
The value of the SystemBrushes::Control property. | |
The value of the SystemBrushes::WindowText property. | |
The value of the SystemBrushes::Highlight property. | |
The value of the SystemBrushes::HighlightText property. | |
The value of the Font property. | |
These values automatically override the values set through the DefaultCellStyle property. To force row headers to inherit the DefaultCellStyle values, you must set the values in the RowHeadersDefaultCellStyle object to the default values indicated for the DataGridViewCellStyle class.
For more information about cell style inheritance, see Cell Styles in the Windows Forms DataGridView Control.
The following code example illustrates how to use this property in a DataGridView with custom colors. Note how the DataGridViewCellStyle::SelectionBackColor property is set to Color::Empty so that the value is inherited from the DefaultCellStyle object.
This example is part of a larger example provided in the DataGridViewCellStyle class overview.
Available since 2.0