通貨型セルで、正数の書式を設定します。
CellTypeプロパティに$CellTypeCurrency(通貨型)が設定されたセルのみ有効です。
このプロパティを設定する前に、Col、Rowプロパティなどを使用して処理の対象を指定します。
以下の値を指定します。初期値は$TypeCurrencyPosStyleIntlです。
|
定数 |
値 |
説明 |
|
$TypeCurrencyPosStyleIntl |
0 |
OSの設定値に従う |
|
$TypeCurrencyPosStyle1 |
1 |
\1.1 |
|
$TypeCurrencyPosStyle2 |
2 |
1.1\ |
|
$TypeCurrencyPosStyle3 |
3 |
\ 1.1 |
|
$TypeCurrencyPosStyle4 |
4 |
1.1 \ |
このプロパティは通貨型セルのプロパティ継承の対象です。
使用例
Col = 3;Row = 2;CellType = $CellTypeCurrency;TypeCurrencyPosStyle = $TypeCurrencyPosStyle1;Value = 1.23; BlockMode = $TRUE;Col = 3;Row = 3;Col2 = 5;Row2 = 5;CellType = $CellTypeCurrency;TypeCurrencyPosStyle = $TypeCurrencyPosStyle2;Value = 4.56;BlockMode = $FALSE;
関連項目
CellTypeプロパティ