次のサンプルコードは、正のパーセント値に対して、値の後ろにパーセント記号を付けます。
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