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


Glossary Item Box

Resets to the default setting the style of cell notes (not set).

Syntax

Visual Basic (Declaration) 
Public Overrides Sub ResetNoteStyle() 
Visual Basic (Usage)Copy Code
Dim instance As NamedStyle
 
instance.ResetNoteStyle()
C# 
public override void ResetNoteStyle()

Example

This example resets the note style for the DefaultStyle.
C#Copy Code
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("NoteStyle", "DataAreaDefault");

ns.NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote;
fpSpread1.NamedStyles.Add(ns);
fpSpread1.ActiveSheet.DefaultStyle = ns;
fpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development");

private void button1Click(object sender, System.EventArgs e)
{
      fpSpread1.ResumeLayout(True);
      ns.ResetNoteStyle();
}
Visual BasicCopy Code
Dim ns As New FarPoint.Win.Spread.NamedStyle("NoteStyle", "DataAreaDefault")

ns.NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote
FpSpread1.NamedStyles.Add(ns)
FpSpread1.ActiveSheet.DefaultStyle = ns
FpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development")

Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
      FpSpread1.ResumeLayout(True)
      ns.ResetNoteStyle()
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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