Spread ASP.NET 6.0 Product Documentation
ResetName Method
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > NamedStyle Class : ResetName Method


Glossary Item Box

Resets to the default the name of the style (String.Empty).

Syntax

Visual Basic (Declaration) 
Public Overridable Sub ResetName() 
Visual Basic (Usage)Copy Code
Dim instance As NamedStyle
 
instance.ResetName()
C# 
public virtual void ResetName()

Example

This example resets the name to its default setting.
C#Copy Code
FarPoint.Web.Spread.NamedStyle parent = new FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeaderDefault");
parent.BackColor = Color.Yellow;
FpSpread1.NamedStyles.Add(parent);
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = parent;
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = parent;

if (IsPostBack)
{
    parent.ResetName();
}
Visual BasicCopy Code
Dim parent As New FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeaderDefault")
parent.BackColor = Color.Yellow
FpSpread1.NamedStyles.Add(parent)
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = parent
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = parent

If IsPostBack Then
    parent.ResetName()
End If

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.