Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / StyleInfo Class / HorizontalAlign Property
Example


In This Topic
    HorizontalAlign Property (StyleInfo)
    In This Topic
    Gets or sets the horizontal alignment of the cell for the style.
    Syntax
    'Declaration
     
    
    Public Overridable Property HorizontalAlign As HorizontalAlign
    'Usage
     
    
    Dim instance As StyleInfo
    Dim value As HorizontalAlign
     
    instance.HorizontalAlign = value
     
    value = instance.HorizontalAlign
    public virtual HorizontalAlign HorizontalAlign {get; set;}

    Property Value

    HorizontalAlign object containing the alignment of text for the cells of this style
    Remarks

    Valid values for this property are the horizontal alignment settings listed in the HorizontalAlign enumeration in the Microsoft .NET Framework Reference.

    Use the VerticalAlign property to specify the vertical alignment of the object or text.

    Example
    This example creates a StyleInfo object and adjusts the alignment of the text in the first cell. Whether the object is empty is returned to a list box, along with its Parent NamedStyle, if it has one.
    See Also