Spread for ASP.NET 11 Product Documentation
AlternateText Property (ImageCellType)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > ImageCellType Class : AlternateText Property
Gets or sets the alternate text for the image cell.
Syntax
'Declaration
 
Public Property AlternateText As String
'Usage
 
Dim instance As ImageCellType
Dim value As String
 
instance.AlternateText = value
 
value = instance.AlternateText
public string AlternateText {get; set;}

Property Value

String containing the alternate text
Example
This sets the alternate text for the image cell.
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
See Also

Reference

ImageCellType Class
ImageCellType Members