PowerTools SPREAD for ASP.NET 8.0J
ImageUrl プロパティ (ButtonCellType)

コマンドボタン型セルに表示する画像を取得または設定します。
構文
'Declaration
 
Public Property ImageUrl As String
public string ImageUrl {get; set;}

プロパティ値

画像のURLを含むString
解説
ボタンのテキストを指定するには、Textプロパティを使用します。
次のサンプルコードは、ボタンセルに表示する画像の位置を設定します。
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.ImageButton;
btn.ImageUrl = "D:\\img\btns\\edit-e.jpg";
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.ImageButton
btn.ImageUrl = "D:\img\btns\edit-e.jpg"
style.CellType = btn
FpSpread1.Sheets(0).SetStyleInfo(0, 0, style)
参照

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

 

 


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