SSpread.TypeScientificMin Property
In the exponential cell, set the lower limit that can be input.
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 -1.7E + 308 .
The upper limit is specified by the TypeScientificMax property.
This property is subject to property inheritance for exponential cells .
Precautions for specifying the range based on the lower and upper limits.
Example of use
CCol = 3;
Row = 2;
CellType = $CellTypeScientific;
TypeScientificDecPlaces = 2;
TypeScientificMin = 0;
TypeScientificMax = 1000000;
Value = 0;
BlockMode = $TRUE;
Col = 3;
Row = 3;
Col2 = 5;
Row2 = 5;
CellType = $CellTypeScientific;
TypeScientificMin = -1000000;
TypeScientificMax = 1000000;
Value = 0;
BlockMode = $FALSE;
Related item
CellType , TypeScientificMax property