FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 : 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