Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Border Class / Border Constructor / Border Constructor()
Example


In This Topic
    Border Constructor()
    In This Topic
    Creates a new border with default values.
    Syntax
    'Declaration
     
    
    Public Function New()
    'Usage
     
    
    Dim instance As New Border()
    public Border()
    Remarks
    Initializes an instance of the Border class.
    Example
    This examples creates a new Border object, sets its BorderStyle and applies it to an instance of a Cell object.
    FarPoint.Web.Spread.Border border = new FarPoint.Web.Spread.Border();
    FarPoint.Web.Spread.Cell acell;
    acell=FpSpread1.Cells[0,0];
    border.BorderStyle=BorderStyle.Dotted;
    acell.Border=border;
    Dim border As New FarPoint.Web.Spread.Border()
    Dim acell As FarPoint.Web.Spread.Cell
    acell=FpSpread1.Cells(0,0)
    border.BorderStyle=BorderStyle.Dotted
    acell.Border=border
    See Also