Spread Windows Forms 12.0 Product Documentation
IsNoteIndicatorSizeSet Method (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : IsNoteIndicatorSizeSet Method
Determines whether the cell note indicator size is set.
Syntax
'Declaration
 
Public Overridable Function IsNoteIndicatorSizeSet() As Boolean
'Usage
 
Dim instance As StyleInfo
Dim value As Boolean
 
value = instance.IsNoteIndicatorSizeSet()
public virtual bool IsNoteIndicatorSizeSet()
Example
This example uses the IsNoteIndicatorSizeSet method.
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())
See Also

Reference

StyleInfo Class
StyleInfo Members