SSpread.TypeScientificDecimal Property
Set the decimal point symbol in the exponential cell.
Only valid for cells with the CellType property set to $CellTypeScientific.
Before setting this property, use the Col , Row properties, and so on to specify what to do.
The initial value is a blank character string ( according to the OS setting value).
The number of digits after the decimal point is set with the TypeScientificDecPlaces property.
This property is subject to property inheritance for exponential cells .
Example of use
Col = 3;
Row = 2;
CellType = $ CellTypeScientific;
TypeScientificDecPlaces = 3;
Value = 0.1234;
BlockMode = $ TRUE;
Col = 3;
Row = 3;
Col2 = 5;
Row2 = 5;
CellType = $ CellTypeScientific;
TypeScientificDecPlaces = 1;
Value = 0.5678;
BlockMode = $ FALSE;
Related item
CellType, TypeScientificDecPlaces property.