Link Search Menu Expand Document

SSpread.TypePercentDecimal Property

Set the decimal point symbol in the percentage cell.

Only valid for cells with the CellType property set to $CellTypePercent (percentage type).
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 TypePercentDecPlaces property.

This property is subject to property inheritance for percentage cells.

Example of use

Col = 3;
Row = 2;
CellType = $ CellTypePercent;
TypePercentDecimal = "・";
Value = 0.123;
 
BlockMode = $ TRUE;
Col = 3;
Row = 3;
Col2 = 5;
Row2 = 5;
CellType = $ CellTypePercent;
TypePercentDecimal = ",";
Value = 0.456;
BlockMode = $ FALSE;

Related item
CellType , TypePercentDecPlaces property