DataGridCell Structure
Identifies a cell in the grid.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The DataGridCell type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ColumnNumber | Gets or sets the number of a column in the System.Windows.Forms::DataGrid control. |
![]() | RowNumber | Gets or sets the number of a row in the System.Windows.Forms::DataGrid control. |
| Name | Description | |
|---|---|---|
![]() | Equals | Gets a value indicating whether the DataGridCell is identical to a second DataGridCell. (Overrides ValueType::Equals(Object).) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Gets a hash value that can be added to a Hashtable. (Overrides ValueType::GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Gets the row number and column number of the cell. (Overrides ValueType::ToString().) |
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.
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 = dynamic_cast<DataTable^>(DataGrid1->DataSource); Console::WriteLine( myTable->Rows[ myCell->RowNumber ][ myCell->ColumnNumber ] ); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
