DataGrid.GetCurrentCellBounds メソッド
選択されたセルの四隅を指定する Rectangle を取得します。
Public Function GetCurrentCellBounds() As Rectangle
[C#]
public Rectangle GetCurrentCellBounds();
[C++]
public: Rectangle GetCurrentCellBounds();
[JScript]
public function GetCurrentCellBounds() : Rectangle;
戻り値
現在のセルの四隅を定義する Rectangle 。
使用例
[Visual Basic, C#, C++] 選択されたセルの Rectangle を取得する例を次に示します。
Private Sub DataGrid1_CurrentCellChange(ByVal sender As Object, ByVal e As EventArgs)
Dim rect As Rectangle
rect = DataGrid1.GetCurrentCellBounds()
Console.WriteLine(rect.ToString)
End Sub
[C#]
private void dataGrid1_CurrentCellChange(object sender, EventArgs e)
{
Rectangle rect;
rect = dataGrid1.GetCurrentCellBounds();
Console.WriteLine(rect.ToString());
}
[C++]
private:
void dataGrid1_CurrentCellChange(Object* /*sender*/, EventArgs* /*e*/)
{
Rectangle rect;
rect = dataGrid1->GetCurrentCellBounds();
Console::WriteLine(__box(rect));
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
DataGrid クラス | DataGrid メンバ | System.Windows.Forms 名前空間 | GetCellBounds