DataGridViewColumnHeaderCell::GetInheritedStyle Method (DataGridViewCellStyle^, Int32, Boolean)

 

Gets the style applied to the cell.

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

public:
virtual DataGridViewCellStyle^ GetInheritedStyle(
	DataGridViewCellStyle^ inheritedCellStyle,
	int rowIndex,
	bool includeColors
) override

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
ArgumentOutOfRangeException

rowIndex is not -1.

This method returns a DataGridViewCellStyle that inherits its settings from the DataGridViewCellStyle objects returned by the ColumnHeadersDefaultCellStyle and DefaultCellStyle properties of the DataGridView. For more information, see Cell Styles in the Windows Forms DataGridView Control.

.NET Framework
Available since 2.0
Return to top
Show: