PowerTools SPREAD for Windows Forms 8.0J
CurrencyPositiveFormat 列挙体


通貨型セルの通貨記号と正号の書式を指定します。
構文
'Declaration
 
Public Enum CurrencyPositiveFormat 
   Inherits System.Enum
'使用法
 
Dim instance As CurrencyPositiveFormat
public enum CurrencyPositiveFormat : System.Enum 
メンバ
メンバ説明
CurrencySymbolAfter[1] 通貨記号を値の後ろに表示します。
CurrencySymbolAfterWithSpace[3] 通貨記号を値の後ろにスペースを空けて表示します。
CurrencySymbolBefore[0] 通貨記号を値の前に表示します。
CurrencySymbolBeforeWithSpace[2] 通貨記号を値の前にスペースを空けて表示します。
UseRegional[-1]Windowsの地域設定に従って通貨記号を表示します。
次のサンプルコードは、正の値に対して、値の後ろに通貨記号を付けます。
Dim crrct As New FarPoint.Win.Spread.CellType.CurrencyCellType()
crrct.PositiveFormat = FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolAfter
crrct.CurrencySymbol = Chr(163)
FpSpread1.ActiveSheet.Cells(0, 0).CellType = crrct
FpSpread1.ActiveSheet.Cells(0, 0).Value = 435.45
FarPoint.Win.Spread.CellType.CurrencyCellType crrct = new FarPoint.Win.Spread.CellType.CurrencyCellType();
crrct.PositiveFormat = FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolAfter;
crrct.CurrencySymbol = "\xA3";
fpSpread1.ActiveSheet.Cells[0, 0].CellType = crrct;
fpSpread1.ActiveSheet.Cells[0, 0].Value = 435.45;
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.CellType.CurrencyPositiveFormat

参照

FarPoint.Win.Spread.CellType 名前空間
PositiveFormat プロパティ (CurrencyCellType クラス)

開発者ガイド

通貨型セル

 

 


© 2004-2015, GrapeCity inc. All rights reserved.