Spread for ASP.NET 7.0 Product Documentation
TextOnRight Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > ImageCellType Class : TextOnRight Property


Glossary Item Box

Gets or sets whether the text is displayed on the right side of the image.

Syntax

Visual Basic (Declaration) 
Public Property TextOnRight As Boolean
Visual Basic (Usage)Copy Code
Dim instance As ImageCellType
Dim value As Boolean
 
instance.TextOnRight = value
 
value = instance.TextOnRight
C# 
public bool TextOnRight {get; set;}

Property Value

Boolean: true if text is displayed on the right of the image; false if text is displayed on the left of the image

Remarks

Set to true to display the text on the right side of the image. Set to false to display the text on the left side of the image.

Specify the alignment of the picture in relation to the text by setting the ImageAlign property.

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.
C#Copy Code
<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;
Visual BasicCopy Code
<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 Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.