Resets all the property settings of the Appearance class to their default values.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Sub ResetAll() |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Appearance
instance.ResetAll() |
C# | |
---|
public virtual void ResetAll() |
Remarks
Example
This example creates a new Appearance object, sets the background and foreground colors and then Resets the properties to their default values.
C# | Copy Code |
---|
FarPoint.Web.Spread.Appearance appearance = new FarPoint.Web.Spread.Appearance();
appearance.BackColor = Color.Red;
appearance.ForeColor = Color.Blue;
private void Button1_Click(object sender, System.EventArgs e)
{
appearance.Reset(AppearanceProperty.BackColor);
System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.BackColor));
appearance.ResetAll();
System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.ForeColor));
}
|
Visual Basic | Copy Code |
---|
Dim appearance As New Appearance()
appearance.BackColor = Color.Red
appearance.ForeColor = Color.Blue
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
appearance.Reset(AppearanceProperty.BackColor)
System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.BackColor))
appearance.ResetAll()
System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.ForeColor))
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