FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > NamedStyle Class : ResetName Method |
'Declaration Public Overridable Sub ResetName()
'Usage Dim instance As NamedStyle instance.ResetName()
public virtual void ResetName()
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
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