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,表示儲存格的顯示矩形。
例外狀況
columnIndex
小於 -1,或大於控制項中的資料行數目減 1。
-或-
rowIndex
小於 -1,或大於控制項中的資料列數目減 1。
備註
這個方法只會傳回整個儲存格界限或顯示的部分。 若要只取得儲存格內容的界限,請使用 cell ContentBounds 屬性。