fpSpread1.ActiveSheet.SetNote(1, 1, "Test");
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.NoteIndicatorSize = new Size(10, 10);
si.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight;
fpSpread1.ActiveSheet.DefaultStyle = si;
listBox1.Items.Add(si.IsNoteIndicatorPositionSet());
listBox1.Items.Add(si.IsNoteIndicatorSizeSet());
FpSpread1.ActiveSheet.SetNote(1, 1, "Test")
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.NoteIndicatorSize = New Size(10, 10)
si.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight
FpSpread1.ActiveSheet.DefaultStyle = si
ListBox1.Items.Add(si.IsNoteIndicatorPositionSet())
ListBox1.Items.Add(si.IsNoteIndicatorSizeSet())