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


プログレス インジケータのテキスト部分の表示方法を取得または設定します。
構文
'Declaration
 
Public Property TextStyle As ProgressTextStyle
'使用法
 
Dim instance As ProgressCellType
Dim value As ProgressTextStyle
 
instance.TextStyle = value
 
value = instance.TextStyle
public ProgressTextStyle TextStyle {get; set;}

プロパティ値

テキストの種類を決定する ProgressTextStyle 設定
解説
このプロパティは、進行状況インジケータに表示されるテキストの種類(数値かテキストか)を決定します。
次のサンプルコードは、セルのテキストとテキストスタイルを設定します。
FarPoint.Win.Spread.CellType.ProgressCellType progress = new FarPoint.Win.Spread.CellType.ProgressCellType();
progress.TextStyle =FarPoint.Win.ProgressTextStyle.PercentRemaining;
progress.Text ="This is the percent remaining.";
fpSpread1.Sheets[0].Cells[0, 0].CellType = progress;
Dim progress As New FarPoint.Win.Spread.CellType.ProgressCellType
progress.TextStyle = FarPoint.Win.ProgressTextStyle.PercentRemaining
progress.Text ="This is the percent remaining."
FpSpread1.Sheets(0).Cells(0, 0).CellType = progress
参照

ProgressCellType クラス
ProgressCellType メンバ

 

 


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