PowerTools SPREAD for Windows Forms 8.0J
Maximum プロパティ (ProgressCellType)


プログレス インジケータでのユーザー入力の最大値を取得または設定します。
構文
'Declaration
 
Public Property Maximum As Integer
'使用法
 
Dim instance As ProgressCellType
Dim value As Integer
 
instance.Maximum = value
 
value = instance.Maximum
public int Maximum {get; set;}

プロパティ値

最大値を表す Integer

次のサンプルコードは、進行状況インジケータ型セルを作成し、いくつかのプロパティを設定します。

FarPoint.Win.Spread.CellType.ProgressCellType progress =new FarPoint.Win.Spread.CellType.ProgressCellType();

        progress.Style = FarPoint.Win.ProgressStyle.Bars;
        progress.FillColor = Color.Coral;
        progress.FillTextColor = Color.DarkGreen;
        progress.Minimum = 0;
        progress.Maximum = 100;
        progress.Orientation = FarPoint.Win.ProgressOrientation.LeftToRight;
        fpSpread1.Sheets[0].Cells[0, 0].CellType = progress;
        fpSpread1.Sheets[0].Cells[0, 0].Value = "50";
Dim progress As New FarPoint.Win.Spread.CellType.ProgressCellType()

        progress.Style = FarPoint.Win.ProgressStyle.Bars
        progress.FillColor = Color.Coral
        progress.FillTextColor = Color.DarkGreen
        progress.Minimum = 0
        progress.Maximum = 100
        progress.Orientation = FarPoint.Win.ProgressOrientation.LeftToRight
        FpSpread1.Sheets(0).Cells(0, 0).CellType = progress
        FpSpread1.Sheets(0).Cells(0, 0).Value = "50"
参照

ProgressCellType クラス
ProgressCellType メンバ

 

 


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