DataGridViewButtonCell.GetValue(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索与该按钮关联的文本。
protected:
override System::Object ^ GetValue(int rowIndex);
protected override object GetValue (int rowIndex);
protected override object? GetValue (int rowIndex);
override this.GetValue : int -> obj
Protected Overrides Function GetValue (rowIndex As Integer) As Object
参数
- rowIndex
- Int32
该单元格的父行索引。
返回
DataGridViewButtonCell 的值;或者,如果 Text 为 true
,则为所有者列的 UseColumnTextForButtonValue 值。
注解
此方法可用于检索共享行中单元格的文本,而共享行无法在本地存储单元格值并保持共享状态。 必须传入实际行索引,因为共享行的索引为 -1。 有关行共享的详细信息,请参阅缩放 Windows 窗体 DataGridView 控件的最佳做法。