'Declaration Public Overridable Function IsNoteStyleSet() As Boolean
public virtual bool IsNoteStyleSet()
Return Value
Boolean: true if the property is set; false otherwise
'Declaration Public Overridable Function IsNoteStyleSet() As Boolean
public virtual bool IsNoteStyleSet()
Gets whether the NoteStyle property is set.
fpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development"); fpSpread1.ActiveSheet.DefaultStyle.NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote; bool b; b = fpSpread1.ActiveSheet.DefaultStyle.IsNoteStyleSet(); MessageBox.Show(b.ToString());
fpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development") fpSpread1.ActiveSheet.DefaultStyle.NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote Dim b As Boolean b = fpSpread1.ActiveSheet.DefaultStyle.IsNoteStyleSet MsgBox(b.ToString())