Overload | Description |
---|---|
Item(Int32,Int32) | Gets or sets the data in a grid cell. (Inherited from C1.Win.C1FlexGrid.C1FlexGridBase) |
Item(Int32,String) | Gets or sets the data in a grid cell. (Inherited from C1.Win.C1FlexGrid.C1FlexGridBase) |
Overload | Description |
---|---|
Item(Int32,Int32) | Gets or sets the data in a grid cell. (Inherited from C1.Win.C1FlexGrid.C1FlexGridBase) |
Item(Int32,String) | Gets or sets the data in a grid cell. (Inherited from C1.Win.C1FlexGrid.C1FlexGridBase) |
This is one of the indexers you can use to get or set the data stored in grid cells.
You can index cells using the row and column indices or using the row index and column name.
Using integer indices is more efficient, because the grid doesn't have to look up the column. Using column names is more flexible, because references remain valid even if the user moves columns to a new position.
When assigning a value to a cell, the grid tries to convert it into the type specified for the column (see the RowCol.DataType property). If the grid can't convert the value, it fires the GridError event and the cell retains its original value.