Resets all border property settings to their default values.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Sub ResetAll() |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Border
instance.ResetAll() |
C# | |
---|
public virtual void ResetAll() |
Remarks
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.
C# | Copy Code |
---|
FarPoint.Web.Spread.Border border=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();
} |
Visual Basic | Copy Code |
---|
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 |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also