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 void PrintCellRowAndCol() { DataGridCell myCell; myCell = DataGrid1.CurrentCell; Console.WriteLine(myCell.RowNumber); Console.WriteLine(myCell.ColumnNumber); // Prints the value of the cell through the DataTable. DataTable myTable; // Assumes the DataGrid is bound to a DataTable. myTable = (DataTable) DataGrid1.DataSource; Console.WriteLine(myTable.Rows[myCell.RowNumber] [myCell.ColumnNumber]); }
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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.