DataGridViewCell.GetInheritedState(Int32) 方法

定义

返回一个值,该值指示此单元格从它的行和列的状态继承后的当前状态。

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

参数

rowIndex
Int32

包含该单元格的行的索引。

返回

DataGridViewElementStates

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

例外

该单元格不包含在 DataGridView 控件中,且 rowIndex 不为 -1。

  • 或 - rowIndex 不是包含此单元格的行的索引。

该单元格包含在 DataGridView 控件中,且 rowIndex 不在有效范围(从 0 至控件中的行数减 1)内。

注解

此方法可用于确定共享行中单元格的状态。 共享行的值为 Index -1,这可以防止将属性与共享行中的单元格一起使用 InheritedState 。 若要使用此方法,请传入包含此单元格的行的实际索引。 可以通过调用 IndexOf 方法检索共享行的实际索引。

适用于

另请参阅