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


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

    Property Value

    BorderStyle setting for the bottom 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 creates a spreadsheet with 7 columns and 50 rows. It sets the first column of cells to be currency cells with a double border on the bottom and left side of the cells and a groove border on the right and top of the cells. The bottom and left side have a 5-pixel thick blue border.
    See Also