Spread Windows Forms 8.0 Product Documentation
ResetNoteStyle Method (NamedStyle)
Example 


Resets to the default setting the style of cell notes (not set).
Syntax
'Declaration
 
Public Overrides Sub ResetNoteStyle() 
'Usage
 
Dim instance As NamedStyle
 
instance.ResetNoteStyle()
public override void ResetNoteStyle()
Example
This example resets the note style for the DefaultStyle.
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();
}
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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

Reference

NamedStyle Class
NamedStyle Members
NoteStyle Property

 

 


Copyright © GrapeCity, inc. All rights reserved.