FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > ImageCellType Class : ImageAlign Property |
'Declaration Public Property ImageAlign As ImageAlign
'Usage Dim instance As ImageCellType Dim value As ImageAlign instance.ImageAlign = value value = instance.ImageAlign
public ImageAlign ImageAlign {get; set;}
Use this property to specify the alignment of the picture in the cell in relation to the text. Set the TextOnRight property to specify where the text is placed in the cell (to the left or right of the picture).
<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
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional