DataGrid.GetCurrentCellBounds Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Rectangle that specifies the four corners of the selected cell.
public:
System::Drawing::Rectangle GetCurrentCellBounds();
public System.Drawing.Rectangle GetCurrentCellBounds ();
member this.GetCurrentCellBounds : unit -> System.Drawing.Rectangle
Public Function GetCurrentCellBounds () As Rectangle
Returns
A Rectangle that defines the current cell's corners.
Examples
The following code example gets the Rectangle of the selected cell.
private:
void dataGrid1_CurrentCellChange( Object^ /*sender*/, EventArgs^ /*e*/ )
{
Rectangle rect;
rect = dataGrid1->GetCurrentCellBounds();
Console::WriteLine( rect );
}
private void dataGrid1_CurrentCellChange(object sender, EventArgs e)
{
Rectangle rect;
rect = dataGrid1.GetCurrentCellBounds();
Console.WriteLine(rect.ToString());
}
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
Remarks
To retrieve the cell bounds for a cell other than the current cell, use GetCellBounds.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.