DataGridViewCell.InheritedStyle Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the style currently applied to the cell.
public:
property System::Windows::Forms::DataGridViewCellStyle ^ InheritedStyle { System::Windows::Forms::DataGridViewCellStyle ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewCellStyle InheritedStyle { get; }
[<System.ComponentModel.Browsable(false)>]
member this.InheritedStyle : System.Windows.Forms.DataGridViewCellStyle
Public ReadOnly Property InheritedStyle As DataGridViewCellStyle
Property Value
The DataGridViewCellStyle currently applied to the cell.
- Attributes
Exceptions
The cell does not belong to a DataGridView control.
-or-
ColumnIndex is less than 0, indicating that the cell is a row header cell.
The row containing the cell is a shared row.
-or-
The cell is a column header cell.
Remarks
The DataGridView control displays its cells using the styles indicated by the cell InheritedStyle property, which inherits styles from other properties of type DataGridViewCellStyle. The styles specified through the Style property override the styles specified through all other cell-style properties, but do not necessarily indicate all the styles that contribute to the cell's appearance.
For more information, see Cell Styles in the Windows Forms DataGridView Control.