DataGridView.GetCellDisplayRectangle(Int32, Int32, Boolean) 方法

定义

返回表示单元格显示区域的矩形。

public:
 System::Drawing::Rectangle GetCellDisplayRectangle(int columnIndex, int rowIndex, bool cutOverflow);
public System.Drawing.Rectangle GetCellDisplayRectangle (int columnIndex, int rowIndex, bool cutOverflow);
member this.GetCellDisplayRectangle : int * int * bool -> System.Drawing.Rectangle
Public Function GetCellDisplayRectangle (columnIndex As Integer, rowIndex As Integer, cutOverflow As Boolean) As Rectangle

参数

columnIndex
Int32

所需单元格的列索引。

rowIndex
Int32

所需单元格的行索引。

cutOverflow
Boolean

如果只返回该单元格的显示部分,则为 true;如果返回整个单元格界限,则为 false

返回

Rectangle

表示单元格显示矩形的 Rectangle

例外

columnIndex 小于 -1 或大于控件中的列数减 1。

  • 或 - rowIndex 小于 -1 或大于控件中的行数减 1。

注解

此方法仅返回整个单元格边界或显示部分。 若要仅获取单元格内容的边界,请使用单元格 ContentBounds 属性。

适用于

另请参阅