DataGridCell Structure
Assembly: System.Windows.Forms (in system.windows.forms.dll)
The DataGridCell can be used in conjunction with the System.Windows.Forms.DataGrid control's CurrentCell property to get or set the value of any cell. Setting the System.Windows.Forms.DataGrid control's CurrentCell property to a DataGridCell causes the focus to move to the cell specified by the DataGridCell.
The following example assigns the DataGridCell to the CurrentCell of a System.Windows.Forms.DataGrid and returns the column and row number of the selected cell. The value stored in the DataTable is also printed using the DataGridCell object's RowNumber and ColumnNumber.
Private Sub PrintCellRowAndCol() Dim myCell As DataGridCell myCell = DataGrid1.CurrentCell Console.WriteLine(myCell.RowNumber) Console.WriteLine(myCell.ColumnNumber) ' Prints the value of the cell through the DataTable. Dim myTable As DataTable ' Assumes the DataGrid is bound to a DataTable. myTable = CType(DataGrid1.DataSource, DataTable) Console.WriteLine(myTable.Rows(myCell.RowNumber)(myCell.ColumnNumber)) End Sub
private void PrintCellRowAndCol()
{
DataGridCell myCell;
myCell = dataGrid1.get_CurrentCell();
Console.WriteLine(myCell.get_RowNumber());
Console.WriteLine(myCell.get_ColumnNumber());
// Prints the value of the cell through the DataTable.
DataTable myTable;
// Assumes the DataGrid is bound to a DataTable.
myTable = (DataTable)(dataGrid1.get_DataSource());
Console.WriteLine(myTable.get_Rows().
get_Item(myCell.get_RowNumber()).
get_Item(myCell.get_ColumnNumber()));
} //PrintCellRowAndCol
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.