DataGridViewCell.GetInheritedState(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示此单元格从它的行和列的状态继承后的当前状态。
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 值的按位组合,表示单元格的当前状态。
例外
该单元格包含在 DataGridView 控件中,且 rowIndex
不在有效范围(从 0 至控件中的行数减 1)内。
注解
此方法可用于确定共享行中单元格的状态。 共享行的值为 Index -1,这可以防止将属性与共享行中的单元格一起使用 InheritedState 。 若要使用此方法,请传入包含此单元格的行的实际索引。 可以通过调用 IndexOf 方法检索共享行的实际索引。