PowerTools SPREAD for Windows Forms 8.0J
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

参照

FarPoint.Win.Spread.CellType 名前空間

開発者ガイド

パーセント型セル

 

 


© 2004-2015, GrapeCity inc. All rights reserved.