DataGridCell.ToString 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 the row number and column number of the cell.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Returns
A string containing the row number and column number.
Examples
The following example returns the row number of the System.Windows.Forms.DataGrid control's CurrentCell using the DataGridCell object's ToString method.
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
Applies to
See also
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.