DataGridViewCell.GetValue(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得儲存格的值。
protected:
virtual System::Object ^ GetValue(int rowIndex);
protected virtual object GetValue (int rowIndex);
protected virtual object? GetValue (int rowIndex);
abstract member GetValue : int -> obj
override this.GetValue : int -> obj
Protected Overridable Function GetValue (rowIndex As Integer) As Object
參數
- rowIndex
- Int32
儲存格的父資料列索引。
傳回
DataGridViewCell 中所包含的值。
例外狀況
儲存格的 DataGridView 屬性值不是 null
,而且 rowIndex
小於 0 或是大於或等於父代 DataGridView 中的資料列數。
儲存格的 DataGridView 屬性值不是 null
,而且 ColumnIndex 屬性的值小於 0,表示該儲存格是資料列行首儲存格。
備註
GetValue傳遞您用來擷取 DataGridViewCell 的資料列索引方法。 請勿將 RowIndex 屬性用於 rowIndex
參數。 如果共用資料列, RowIndex 則 為 -1,這不是 的有效值 rowIndex
。