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 プロパティを使用します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET