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


In This Topic
    BorderColor Property (Border)
    In This Topic
    Gets or sets the color for all sides of the border.
    Syntax
    'Declaration
     
    
    Public Property BorderColor As Color
    'Usage
     
    
    Dim instance As Border
    Dim value As Color
     
    instance.BorderColor = value
     
    value = instance.BorderColor
    public Color BorderColor {get; set;}

    Property Value

    Color object that contains the color of the border
    Remarks

    If you want to set the color of each side of the object border, use the BorderColorBottom, BorderColorLeft, BorderColorRight, and BorderColorTop properties.

    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 type Double set on the bottom and left side of the cells and a style of type Groove set on the right and top of the cells. The bottom and left sides have a BorderColor of blue and the size is set to 5.
    See Also