Link Search Menu Expand Document

SSpread.TypeScientificDecPlaces Property

In the exponential cell, set the number of digits to display after the decimal point.

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.

You can specify 0 to 14 . The initial value is 0 (digit).

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 property