Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Border Class / Border Constructor / Border Constructor(BorderStyle,Color)
Style of the border
Color of the border
Example


In This Topic
    Border Constructor(BorderStyle,Color)
    In This Topic
    Creates a new one-pixel border with the specified style and color.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal style As BorderStyle, _
       ByVal color As Color _
    )
    'Usage
     
    
    Dim style As BorderStyle
    Dim color As Color
     
    Dim instance As New Border(style, color)
    public Border( 
       BorderStyle style,
       Color color
    )

    Parameters

    style
    Style of the border
    color
    Color of the border
    Remarks
    Initializes an instance of the Border class with the option to specify the border style and color.
    Example
    This examples creates a new Border object and applies it to an instance of a Cell object.
    FarPoint.Web.Spread.Border border=new FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red);
    FarPoint.Web.Spread.Cell acell;
    acell=FpSpread1.Cells[0,0];
    acell.Border=border;
    Dim border As New FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red)
    Dim acell As FarPoint.Web.Spread.Cell
    acell=FpSpread1.Cells(0,0)
    acell.Border=border
    See Also