DataGridCell.ToString Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera numer wiersza i numer kolumny komórki.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Zwraca
Ciąg zawierający numer wiersza i numer kolumny.
Przykłady
Poniższy przykład zwraca liczbę wierszy kontrolki System.Windows.Forms.DataGrid CurrentCell przy użyciu DataGridCell metody obiektu ToString .
private:
void Grid_MouseUp(
Object^ sender, System::Windows::Forms::MouseEventArgs^ /*e*/ )
{
DataGrid^ dg = (DataGrid^)(sender);
DataGridCell myCell = dg->CurrentCell;
Console::WriteLine( myCell.ToString() );
}
private void Grid_MouseUp
(object sender, System.Windows.Forms.MouseEventArgs e)
{
DataGrid dg = (DataGrid)sender;
DataGridCell myCell = dg.CurrentCell;
Console.WriteLine(myCell.ToString());
}
Private Sub DataGrid1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Dim myGrid As DataGrid = CType(sender, DataGrid)
Dim myCell As DataGridCell = myGrid.CurrentCell
Console.WriteLine(myCell.ToString)
End Sub