Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / ImageCellType Class / TextOnRight Property
Example


In This Topic
    TextOnRight Property (ImageCellType)
    In This Topic
    Gets or sets whether the text is displayed on the right side of the image.
    Syntax
    'Declaration
     
    
    Public Property TextOnRight As Boolean
    'Usage
     
    
    Dim instance As ImageCellType
    Dim value As Boolean
     
    instance.TextOnRight = value
     
    value = instance.TextOnRight
    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.
    See Also