Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Border Class / ApplyBorder Method
Control to which to apply the border
Border to apply
Example


In This Topic
    ApplyBorder Method
    In This Topic
    Applies any non-blank border settings of a border to the specified control.
    Syntax
    'Declaration
     
    
    Public Shared Sub ApplyBorder( _
       ByVal control As WebControl, _
       ByVal border As Border _
    ) 
    'Usage
     
    
    Dim control As WebControl
    Dim border As Border
     
    Border.ApplyBorder(control, border)
    public static void ApplyBorder( 
       WebControl control,
       Border border
    )

    Parameters

    control
    Control to which to apply the border
    border
    Border to apply
    Example
    This examples creates a new Border object and applies that border to the specified Spread component.
    FarPoint.Web.Spread.Border border=new FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2);
    border.ApplyBorder(FpSpread1,border);
    Dim border As New FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2)
    border.ApplyBorder(FpSpread1,border)
    See Also