Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Border Class / ResetAll Method
Example


In This Topic
    ResetAll Method (Border)
    In This Topic
    Resets all border property settings to their default values.
    Syntax
    'Declaration
     
    
    Public Overridable Sub ResetAll() 
    'Usage
     
    
    Dim instance As Border
     
    instance.ResetAll()
    public virtual void ResetAll()
    Remarks

    This method resets all the border properties. To reset any of the following property settings individually, use the Reset method to reset the property settings back to "Not Set". See the list of properties on the page of Border Class Members.

    Example
    This example creates a Border object, sets several of its properties, then in a ButtonClick event Resets all the properties to their default values.
    FarPoint.Web.Spread.Borderborder=new FarPoint.Web.Spread.Border();
    FarPoint.Web.Spread.Cell acell;
    acell=FpSpread1.Cells[0,0];
    border.BorderColorBottom=Color.Red;
    border.BorderColorRight=Color.Green;
    border.BorderSize=2;
    acell.Border=border;
    private void Button1_Click(object sender,System.EventArgs e)
    {
    border.ResetAll();
    }
    Dim border As New FarPoint.Web.Spread.Border()
    Dim acell As FarPoint.Web.Spread.Cell
    acell=FpSpread1.Cells(0,0)
    border.BorderColorBottom=Color.Red
    border.BorderColorRight=Color.Green
    border.BorderSize=2
    acell.Border=border
    Private Sub Button1_Click(ByVal sender As System.Object,ByVal e As System.EventArgs)Handles Button1.Click
    border.ResetAll()
    End Sub
    See Also