FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 : PercentNegativeFormat 列挙体 |
'Declaration Public Enum PercentNegativeFormat Inherits System.Enum
'使用法 Dim instance As PercentNegativeFormat
public enum PercentNegativeFormat : System.Enum
メンバ | 説明 |
---|---|
PercentAfter | [1]負のパーセント値を、数値の後ろにパーセント記号を付けて表示します。 |
PercentAfterWithSpace | [0]負のパーセント値を、数値の後ろにスペースを空けてパーセント記号を付けて表示します。 |
PercentBefore | [2]負のパーセント値を、数値の後ろにパーセント記号を付けて表示します。 |
UseRegional | [-1]負のパーセント値をWindowsの地域設定の書式で表示します。 |
FarPoint.Win.Spread.CellType.PercentCellType prct = new FarPoint.Win.Spread.CellType.PercentCellType();
prct.NegativeFormat = FarPoint.Win.Spread.CellType.PercentNegativeFormat.PercentAfterWithSpace;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = prct;
fpSpread1.ActiveSheet.Cells[0, 0].Value = -0.34;
Dim prct As New FarPoint.Win.Spread.CellType.PercentCellType() prct.NegativeFormat = FarPoint.Win.Spread.CellType.PercentNegativeFormat.PercentAfterWithSpace FpSpread1.ActiveSheet.Cells(0, 0).CellType = prct FpSpread1.ActiveSheet.Cells(0, 0).Value =- 0.34
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.CellType.PercentNegativeFormat