パーセント型セルで、小数点以下の表示桁数を設定します。
CellTypeプロパティに$CellTypePercent(パーセント型)が設定されたセルのみ有効です。
このプロパティを設定する前に、Col、Rowプロパティなどを使用して処理の対象を指定します。
0から14が指定できます。初期値は2(桁)です。
このプロパティはパーセント型セルのプロパティ継承の対象です。
使用例
Col = 3; Row = 2; CellType = $CellTypePercent; TypePercentDecPlaces = 3; Value = 0.1234; BlockMode = $TRUE; Col = 3; Row = 3; Col2 = 5; Row2 = 5; CellType = $CellTypePercent; TypePercentDecPlaces = 1; Value = 0.5678; BlockMode = $FALSE;
関連項目
CellTypeプロパティ