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


In This Topic
    BorderColorRight Property
    In This Topic
    Gets or sets the color of the right border.
    Syntax
    'Declaration
     
    
    Public Property BorderColorRight As Color
    'Usage
     
    
    Dim instance As Border
    Dim value As Color
     
    instance.BorderColorRight = value
     
    value = instance.BorderColorRight
    public Color BorderColorRight {get; set;}

    Property Value

    Color object that contains the color of the right side border
    Remarks

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

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

    Example
    This example creates a spreadsheet with 7 columns and 50 rows. It sets the first column of cells to be currency cells with a BorderStyle of double-line border. The bottom and right sides of the cells have a blue border that is 5 pixels thick and 8 pixels thick respectively.
    See Also