DataGridViewCell.GetContentBounds メソッド

定義

セルの内容領域を囲んだ外接する四角形を返します。

オーバーロード

GetContentBounds(Int32)

既定の Graphics、およびセルに現在有効なセル スタイルを使用して、セルの内容領域を囲む外接する四角形を返します。

GetContentBounds(Graphics, DataGridViewCellStyle, Int32)

セルの内容領域に外接する四角形を返します。これは、指定された Graphics とセル スタイルを使って計算されます。

GetContentBounds(Int32)

既定の Graphics、およびセルに現在有効なセル スタイルを使用して、セルの内容領域を囲む外接する四角形を返します。

public:
 System::Drawing::Rectangle GetContentBounds(int rowIndex);
public System.Drawing.Rectangle GetContentBounds (int rowIndex);
member this.GetContentBounds : int -> System.Drawing.Rectangle
Public Function GetContentBounds (rowIndex As Integer) As Rectangle

パラメーター

rowIndex
Int32

セルの親行のインデックス。

戻り値

セルの内容領域に外接する Rectangle

例外

rowIndex が 0 未満か、コントロールに含まれる行数 - 1 を上回っています。

ColumnIndex が 0 未満です。これは、セルが行ヘッダーのセルであることを示します。

注釈

このメソッドが呼び出されると、セルの内容のサイズが動的に計算されます。 基底クラスの実装では、常に が返されます Rectangle.Empty

こちらもご覧ください

適用対象

GetContentBounds(Graphics, DataGridViewCellStyle, Int32)

セルの内容領域に外接する四角形を返します。これは、指定された Graphics とセル スタイルを使って計算されます。

protected:
 virtual System::Drawing::Rectangle GetContentBounds(System::Drawing::Graphics ^ graphics, System::Windows::Forms::DataGridViewCellStyle ^ cellStyle, int rowIndex);
protected virtual System.Drawing.Rectangle GetContentBounds (System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex);
abstract member GetContentBounds : System.Drawing.Graphics * System.Windows.Forms.DataGridViewCellStyle * int -> System.Drawing.Rectangle
override this.GetContentBounds : System.Drawing.Graphics * System.Windows.Forms.DataGridViewCellStyle * int -> System.Drawing.Rectangle
Protected Overridable Function GetContentBounds (graphics As Graphics, cellStyle As DataGridViewCellStyle, rowIndex As Integer) As Rectangle

パラメーター

graphics
Graphics

セルのグラフィックス コンテキスト。

cellStyle
DataGridViewCellStyle

セルに適用する DataGridViewCellStyle

rowIndex
Int32

セルの親行のインデックス。

戻り値

セルの内容領域に外接する Rectangle

注釈

このメソッドが呼び出されると、セルの内容のサイズが動的に計算されます。 基底クラスの実装では、常に が返されます Rectangle.Empty

このメソッドは、 プロパティの読み取り時に内部的に ContentBounds 呼び出されます。

こちらもご覧ください

適用対象