DataGridView.GetRowDisplayRectangle(Int32, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回表示某一行(由行索引确定)的显示区域的矩形。
public:
System::Drawing::Rectangle GetRowDisplayRectangle(int rowIndex, bool cutOverflow);
public System.Drawing.Rectangle GetRowDisplayRectangle (int rowIndex, bool cutOverflow);
member this.GetRowDisplayRectangle : int * bool -> System.Drawing.Rectangle
Public Function GetRowDisplayRectangle (rowIndex As Integer, cutOverflow As Boolean) As Rectangle
参数
- rowIndex
- Int32
所需单元格的行索引。
- cutOverflow
- Boolean
如果要返回 DataGridView 界限内可见的行矩形,为 true
;如果要返回整个行矩形,为 false
。
返回
表示行显示矩形的 Rectangle。
例外
rowIndex
不在 0 到行数减 1 的有效范围内。