Spreadsheets are data structures that function as traditional spreadsheets, but with certain areas of the spreadsheets pre-defined and configured to contain extra data.
Set values with FBSpread::SetCellValue().
See the sample script Spread.py which shows how to create a tool with a spreadsheet.
The class FBSpreadPart can be used to represent any element of a spreadsheet. All of the objects in a spreadsheet inherit from this class, giving any element in the spreadsheet common characteristics.
The data cells, depending on the settings for that particular cell, can contain and display various elements. The CellType property determines which variable is to be displayed.
In the following example, setting the style causes the spread cell to display the contents of its double variable: mSpread.GetCell(0,1).Style = kFBCellStyleDouble;
However, the various values in a cell do not use a common memory space, so cells can contain values of different types (integer, double, etc.).