DataGridViewHeaderCell.GetInheritedState(Int32) 方法

定义

返回一个值,它指示单元格的当前状态为从它的行或列状态继承的状态。

public:
 override System::Windows::Forms::DataGridViewElementStates GetInheritedState(int rowIndex);
public override System.Windows.Forms.DataGridViewElementStates GetInheritedState (int rowIndex);
override this.GetInheritedState : int -> System.Windows.Forms.DataGridViewElementStates
Public Overrides Function GetInheritedState (rowIndex As Integer) As DataGridViewElementStates

参数

rowIndex
Int32

如果单元格不是一个行标头单元格,或者没有包含在 DataGridView 控件中,则为包含单元格的行的索引或为 -1。

返回

DataGridViewElementStates

DataGridViewElementStates 值的按位组合,表示单元格的当前状态。

例外

单元格是一个行标头单元格,没有包含在 DataGridView 控件内,rowIndex 不是 -1。

  • 或 - 单元格是一个行标头单元格,包含在 DataGridView 控件内,rowIndex 在有效范围(0 到控件中的行数减 1 的差)以外。

  • 或 - 单元格是一个行标头单元格,rowIndex 不是包含此单元格的行的索引。

单元格是一个列标头单元格或者控件的 TopLeftHeaderCellrowIndex 不是 -1。

适用于

另请参阅