Spread for ASP.NET 10 Product Documentation
ImageUrl Property (ImageCellType)
Example 


Gets or sets the URL of the image.
Syntax
'Declaration
 
Public Property ImageUrl As String
'Usage
 
Dim instance As ImageCellType
Dim value As String
 
instance.ImageUrl = value
 
value = instance.ImageUrl
public string ImageUrl {get; set;}

Property Value

String containing the URL of the image
Remarks
This property determines the path and file name of the picture to display in the image cell.
Example
This example creates an image cell, and places a graphic image in the cell. It aligns the image in the cell and places the text in the cell to the right of the image. It also sizes the column and row containing the cell to better display the image.
<style>.CssStyle1 
{
    FONT: 700 12pt verdana; COLOR: yellow
}
</style>

FarPoint.Web.Spread.ImageCellType imagecell = new FarPoint.Web.Spread.ImageCellType();
imagecell.ImageUrl = "img\\fplogo.jpg";
imagecell.ImageAlign=System.Web.UI.WebControls.ImageAlign.Right;
imagecell.TextOnRight = true;
imagecell.CssClass = "CssStyle1";
FpSpread1.Sheets[0].Cells[0, 0].CellType = imagecell;
<style>.CssStyle1 
{
    FONT: 700 12pt verdana; COLOR: yellow
}
</style>

Dim imagecell As New FarPoint.Web.Spread.ImageCellType()
imagecell.ImageUrl = "img\fplogo.jpg"
imagecell.ImageAlign=System.Web.UI.WebControls.ImageAlign.Right
imagecell.TextOnRight = True
imagecell.CssClass = "CssStyle1"
FpSpread1.Sheets(0).Cells(0, 0).CellType = imagecell
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

ImageCellType Class
ImageCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.