MESCIUS SPREAD for ASP.NET 10.0J
MaximumValue プロパティ (PercentCellType)

最大値を取得または設定します。
構文
'Declaration
 
Public Property MaximumValue As Double
public double MaximumValue {get; set;}

プロパティ値

最大値を表す倍精度浮動小数点数
次のサンプルコードは、最小値および最大値とパーセント値の表示方法を設定します。
FarPoint.Web.Spread.PercentCellType pctcell = new FarPoint.Web.Spread.PercentCellType();
pctcell.MinimumValue = 0.151;    // 15.1%
pctcell.MaximumValue = 0.94;   // 94.0%
pctcell.DecimalDigits = 1;            // Show only one digit to right of decimal point.
pctcell.FixedPoint = true;
FpSpread1.ActiveSheetView.Cells[0, 1].CellType = pctcell;
Dim pctcell As New FarPoint.Web.Spread.PercentCellType()
pctcell.MinimumValue = 0.151 '15.1%
pctcell.MaximumValue = 0.94 '94.0%
pctcell.DecimalDigits = 1   'Show only one digit to right of decimal point.
pctcell.FixedPoint = True
FpSpread1.ActiveSheetView.Cells(0, 1).CellType = pctcell
参照

PercentCellType クラス
PercentCellType メンバ

 

 


© MESCIUS inc. All rights reserved.