WritableCell (Runtime property / ReadOnly)

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 WritableCell(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 only way to be sure that you are getting a true Cell to write to is to use the WritableCell property. (Use the Cell property to read from a 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).