DataGridViewCell::GetInheritedStyle Method (DataGridViewCellStyle^, Int32, Boolean)
Gets the style applied to the cell.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: virtual DataGridViewCellStyle^ GetInheritedStyle( DataGridViewCellStyle^ inheritedCellStyle, int rowIndex, bool includeColors )
Parameters
- inheritedCellStyle
-
Type:
System.Windows.Forms::DataGridViewCellStyle^
A DataGridViewCellStyle to be populated with the inherited cell style.
- rowIndex
-
Type:
System::Int32
The index of the cell's parent row.
- includeColors
-
Type:
System::Boolean
true to include inherited colors in the returned cell style; otherwise, false.
Return Value
Type: System.Windows.Forms::DataGridViewCellStyle^A DataGridViewCellStyle that includes the style settings of the cell inherited from the cell's parent row, column, and DataGridView.
| Exception | Condition |
|---|---|
| InvalidOperationException | The cell has no associated DataGridView. -or- ColumnIndex is less than 0, indicating that the cell is a row header cell. |
| ArgumentOutOfRangeException | rowIndex is less than 0, or greater than or equal to the number of rows in the parent DataGridView. |
This method returns a DataGridViewCellStyle that inherits its settings from the DataGridViewCellStyle objects of the cell's parent row, column, and DataGridView. For more information, see Cell Styles in the Windows Forms DataGridView Control.
Available since 2.0