FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 : NegativeFormat 列挙体 |
'Declaration Public Enum NegativeFormat Inherits System.Enum
'使用法 Dim instance As NegativeFormat
public enum NegativeFormat : System.Enum
メンバ | 説明 |
---|---|
NegativeSignAfter | 負号を値の後ろ(右)に表示します。例:1- |
NegativeSignAfterWithSpace | 負号を値の後ろ(右)にスペースを空けて表示します。例:1 - |
NegativeSignBefore | 負号を値の前(左)に表示します。例:-1 |
NegativeSignBeforeWithSpace | 負号を値の前(左)にスペースを空けて表示します。例:- 1 |
Parentheses | [0] 値を( )で囲んで表示します。例:(1) |
UseRegional | [-1]Windowsの地域設定に従って値を表示します。 |
FarPoint.Win.Spread.CellType.NumberCellType numct = new FarPoint.Win.Spread.CellType.NumberCellType();
numct.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignBeforeWithSpace;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = numct;
fpSpread1.ActiveSheet.Cells[0, 0].Value = -50;
Dim numct As New FarPoint.Win.Spread.CellType.NumberCellType() numct.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignBeforeWithSpace FpSpread1.ActiveSheet.Cells(0, 0).CellType = numct FpSpread1.ActiveSheet.Cells(0, 0).Value = -50
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.CellType.NegativeFormat