GrapeCity SPREAD for Windows Forms 11.0J
ShowSeparator プロパティ (NumberCellType)


数値を3桁ごとに区切るかどうかを表す値を取得または設定します。
構文
'Declaration
 
Public Property ShowSeparator As Boolean
'使用法
 
Dim instance As NumberCellType
Dim value As Boolean
 
instance.ShowSeparator = value
 
value = instance.ShowSeparator
public bool ShowSeparator {get; set;}

プロパティ値

Boolean:区切り記号を表示する場合は True、それ以外の場合は False
次のサンプルコードは、数値型セルのいくつかのプロパティを設定します。
FarPoint.Win.Spread.CellType.NumberCellType num = new FarPoint.Win.Spread.CellType.NumberCellType();
num.DecimalPlaces = 3;
num.DecimalSeparator = ",";
num.FixedPoint = true;
num.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.UseRegional;
num.MaximumValue = 50000.0;
num.MinimumValue = -1000.0;
num.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.Parentheses;
num.NegativeRed = true;
num.Separator = "/";
num.ShowSeparator = true;
num.SpinButton = true;
num.SpinDecimalIncrement = 10;
num.SpinIntegerIncrement = 5;
num.SpinWrap = true;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = num;
fpSpread1.ActiveSheet.Cells[0, 0].Value = -443.0908;
Dim num As New FarPoint.Win.Spread.CellType.NumberCellType()
num.DecimalPlaces = 3
num.DecimalSeparator = ","
num.FixedPoint = True
num.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.UseRegional
num.MaximumValue = 50000.0
num.MinimumValue = -1000.0
num.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.Parentheses
num.NegativeRed = True
num.Separator = "/"
num.ShowSeparator = True
num.SpinButton = True
num.SpinDecimalIncrement = 10
num.SpinIntegerIncrement = 5
num.SpinWrap = True
FpSpread1.ActiveSheet.Cells(0, 0).CellType = num
FpSpread1.ActiveSheet.Cells(0, 0).Value = 443.9098
参照

NumberCellType クラス
NumberCellType メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.