MESCIUS SPREAD for ASP.NET 10.0J
Text プロパティ (ButtonCellType)

ボタンテキストを取得または設定します。
構文
'Declaration
 
Public Property Text As String
public string Text {get; set;}

プロパティ値

テキストを含むString
解説
ボタンに表示するピクチャを指定するには、ImageUrlプロパティを使用します。
この例では、コマンドボタン型セルにカスタムテキストを表示します。
FarPoint.Web.Spread.ButtonCellType btn = New FarPoint.Web.Spread.ButtonCellType();
FarPoint.Web.Spread.StyleInfo style = New FarPoint.Web.Spread.StyleInfo();
btn.ButtonType = FarPoint.Web.Spread.ButtonType.PushButton;
btn.Text = "Click";
style.CellType = btn;
FpSpread1.Sheets[0].SetStyleInfo(0, 0, style);
Dim btn As New FarPoint.Web.Spread.ButtonCellType()
Dim style As New FarPoint.Web.Spread.StyleInfo()
btn.ButtonType = FarPoint.Web.Spread.ButtonType.PushButton
btn.Text = "Click"
style.CellType = btn
FpSpread1.Sheets(0).SetStyleInfo(0, 0, style)
参照

ButtonCellType クラス
ButtonCellType メンバ
ImageUrl プロパティ

 

 


© MESCIUS inc. All rights reserved.