GetDefaultCell (Runtime property / ReadOnly)

This property is used to access data of the Grid default Cell. The property is read only, but
data can be written to the class that it returns. The default Cell is a cell that will be used to fill the Gap of all virtual Cells.

PROPERTY GetDefaultCell() as GridCell


Description:
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).