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


テキスト スタイルがカスタム テキストを表示するよう設定されている場合にプログレス インジケータで使用するテキスト文字列を取得または設定します。
構文
'Declaration
 
Public Property Text As String
'使用法
 
Dim instance As ProgressCellType
Dim value As String
 
instance.Text = value
 
value = instance.Text
public string Text {get; set;}

プロパティ値

カスタム テキストを含む String
解説
このプロパティは、TextStyleCustom に設定されている場合に使用するカスタム テキストを決定します。
次のサンプルコードは、セルのテキストとテキストスタイルを設定します。
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.