Spread Windows Forms 7.0 Product Documentation
ResetName Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > NamedStyle Class : ResetName Method


Glossary Item Box

Resets the name of the style to the default (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 of the style.
C#Copy Code
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle();
ns.Font = new Font("Comic Sans Serif", 12);
ns.Name = "StyleHeaders";
ns.Parent = "HeaderDefault";
fpSpread1.NamedStyles.Add(ns);
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = ns;

DialogResult dlg;
dlg = MessageBox.Show("Do you want to reset the name?", "Reset", MessageBoxButtons.OKCancel);
if (dlg == DialogResult.OK)
{
    ns.ResetName();
}
Visual BasicCopy Code
Dim ns As New FarPoint.Win.Spread.NamedStyle
ns.Font = New Font("Comic Sans Serif", 12)
ns.Name = "StyleHeaders"
ns.Parent = "HeaderDefault"
FpSpread1.NamedStyles.Add(ns)
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = ns

Dim dlg As DialogResult
dlg = MessageBox.Show("Do you want to reset the name?", "Reset", MessageBoxButtons.OKCancel)
If dlg = DialogResult.OK Then
    ns.ResetName()
End If

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.