Spread for ASP.NET 9.0 Product Documentation
Reset Method (Appearance)
Example 


AppearanceProperty object containing the appearance property
Resets the setting of the specified appearance property to its default value.
Syntax
'Declaration
 
Public Overridable Sub Reset( _
   ByVal prop As AppearanceProperty _
) 
'Usage
 
Dim instance As Appearance
Dim prop As AppearanceProperty
 
instance.Reset(prop)
public virtual void Reset( 
   AppearanceProperty prop
)

Parameters

prop
AppearanceProperty object containing the appearance property
Remarks

Use this method to reset one of the appearance properties. For a list of the properties, see the AppearanceProperty class list of members.

To reset all the appearance properties, use the ResetAll method.

Example
This example creates a new Appearance object, sets the background and foreground colors and then Resets the properties to their default values.
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));
}
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 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

Appearance Class
Appearance Members
ResetAll Method
AppearanceProperty Class

 

 


Copyright © GrapeCity, inc. All rights reserved.