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