DataGrid::Item Property (DataGridCell)
.NET Framework (current version)
Gets or sets the value of a specified DataGridCell.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property Object^ default[ DataGridCell cell ] { Object^ get(DataGridCell cell); void set(DataGridCell cell, Object^ value); }
Parameters
- cell
-
Type:
System.Windows.Forms::DataGridCell
A DataGridCell that represents a cell in the grid.
The following code example sets and gets the value of a cell by declaring a DataGridCell variable, setting its RowNumber and ColumnNumber values, then first changing, then returning, the value of the given cell.
void SetCellValue( DataGrid^ myGrid ) { DataGridCell myCell; // Use an arbitrary cell. myCell.RowNumber = 1; myCell.ColumnNumber = 1; // Change the cell's value using the CurrentCell. myGrid[ myCell ] = "New Value"; } void GetCellValue( DataGrid^ myGrid ) { DataGridCell myCell; // Use and arbitrary cell. myCell.RowNumber = 1; myCell.ColumnNumber = 1; Console::WriteLine( myGrid[ myCell ] ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: