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


In This Topic
    BorderSizeBottom Property
    In This Topic
    Gets or sets the width in pixels of the bottom border.
    Syntax
    'Declaration
     
    
    Public Property BorderSizeBottom As Integer
    'Usage
     
    
    Dim instance As Border
    Dim value As Integer
     
    instance.BorderSizeBottom = value
     
    value = instance.BorderSizeBottom
    public int BorderSizeBottom {get; set;}

    Property Value

    Integer number of pixels of the thickness of the bottom border
    Remarks

    If you want to set the borders for all sides of the object to the same size, use the BorderSize property.

    To check if other border size 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