Cell

This property is used to access data of the desired cell. The property is read only, but
data can be written to the class that it returns.

PROPERTY Cell(x as Integer) as GridCell

x: The column value of the desired cell.


Description:
Cells are one based, that is the first cell is cell 1.

Since Grid uses Einhugur Floating Engine for the data conatiner then the Cell property does not guaranty that you get a true cell when using this property, that is if the Cell is a virtual cell then the Cell property will return the DefaultCell of the Grid.
(Virtual Cells are Cells which do not exist in memory and the gaps are filled with the default Cell).

In most cases the Cell property should only be used to read data from cells. Use the WritableCell property to write to cell (The WritableCell property creates a new cell in memory if it does not exist).