DataGrid.GetCurrentCellBounds Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um Rectangle que especifica os quatro cantos da célula selecionada.
public:
System::Drawing::Rectangle GetCurrentCellBounds();
public System.Drawing.Rectangle GetCurrentCellBounds ();
member this.GetCurrentCellBounds : unit -> System.Drawing.Rectangle
Public Function GetCurrentCellBounds () As Rectangle
Retornos
Um Rectangle que define os cantos da célula atual.
Exemplos
O exemplo de código a seguir obtém a Rectangle célula selecionada.
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
Comentários
Para recuperar os limites da célula para uma célula diferente da célula atual, use GetCellBounds.