Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Border Class / BorderStyleRight Property
Example


In This Topic
    BorderStyleRight Property
    In This Topic
    Gets or sets the style for the right border.
    Syntax
    'Declaration
     
    
    Public Property BorderStyleRight As BorderStyle
    'Usage
     
    
    Dim instance As Border
    Dim value As BorderStyle
     
    instance.BorderStyleRight = value
     
    value = instance.BorderStyleRight
    public BorderStyle BorderStyleRight {get; set;}

    Property Value

    BorderStyle setting for the right side border
    Remarks

    For more information on these border styles, see the BorderStyle enumeration in the Microsoft .NET Framework Reference.

    If you want to set the border style for all sides of the object to the same style, use the BorderStyle property.

    To check if other border style properties have been set, use the IsDefined method.

    Example
    This example sets BorderStyleRight.
    See Also