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


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

    Property Value

    Integer number of pixels of the thickness of the border
    Remarks

    If you want to set the size of each side of the object border, use the BorderSizeBottom, BorderSizeLeft, BorderSizeRight, and BorderSizeTop properties.

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

    Example
    This example sets the BorderSize.
    See Also