Spread Windows Forms 10.0 Product Documentation
ResetName Method (NamedStyle)
Example 


Resets the name of the style to the default (String.Empty).
Syntax
'Declaration
 
Public Overridable Sub ResetName() 
'Usage
 
Dim instance As NamedStyle
 
instance.ResetName()
public virtual void ResetName()
Example
This example resets the name of the style.
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();
}
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 Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

NamedStyle Class
NamedStyle Members

 

 


Copyright © GrapeCity, inc. All rights reserved.