PowerTools SPREAD for ASP.NET 8.0J
AlternateText プロパティ (ImageCellType)

イメージ型セルの代替テキストを取得または設定します。
構文
'Declaration
 
Public Property AlternateText As String
public string AlternateText {get; set;}

プロパティ値

代替テキストを含むString
次のサンプル コードは、イメージ型セルの代替テキストを設定します。
FarPoint.Web.Spread.ImageCellType img = new FarPoint.Web.Spread.ImageCellType(); 
img.ImageUrl = "c:\\earth.ico"; 
img.AlternateText = "Alternate"; 
img.ImageAlign = ImageAlign.Left; 
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = img;
Dim img As New FarPoint.Web.Spread.ImageCellType
img.ImageUrl = "c:\earth.ico"
img.AlternateText = "Alternate"
img.ImageAlign = ImageAlign.Left
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = img
参照

ImageCellType クラス
ImageCellType メンバ

 

 


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