DataGridView.GetCellDisplayRectangle(Int32, Int32, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回表示单元格显示区域的矩形。
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。
例外
注解
此方法仅返回整个单元格边界或显示部分。 若要仅获取单元格内容的边界,请使用单元格 ContentBounds 属性。