MESCIUS SPREAD for Windows Forms 15.0J
Style プロパティ (ProgressCellType)
使用例 

プログレス インジケータの表示タイプを取得または設定します。
構文
'宣言
 
Public Property Style As ProgressStyle
public ProgressStyle Style {get; set;}

プロパティ値

プログレスインジケーターの表示スタイルを決定するProgressStyle設定
使用例
次のサンプルコードは、進行状況インジケータのスタイルを設定します。
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 メンバ

 

 


© MESCIUS inc. All rights reserved.