Spread Windows Forms 12.0 Product Documentation
NoteIndicatorSize Property (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : NoteIndicatorSize Property
Gets or sets the size of the cell note indicator.
Syntax
'Declaration
 
Public Overridable Property NoteIndicatorSize As Size
'Usage
 
Dim instance As StyleInfo
Dim value As Size
 
instance.NoteIndicatorSize = value
 
value = instance.NoteIndicatorSize
public virtual Size NoteIndicatorSize {get; set;}
Example
This example sets the size of the note indicator.
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); 
si.NoteIndicatorSize = new Size(10, 10); 
fpSpread1.ActiveSheet.SetNote(0, 0, "Test"); 
fpSpread1.ActiveSheet.DefaultStyle = si; 

bool b; 
b = si.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorSize); 
MessageBox.Show(b.ToString()); 
Dim si As New FarPoint.Win.Spread.StyleInfo
si.NoteIndicatorSize = New Size(10, 10)
FpSpread1.ActiveSheet.SetNote(0, 0, "Test")
FpSpread1.ActiveSheet.DefaultStyle = si

Dim b As Boolean
b = si.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorSize)
MessageBox.Show(b.ToString())
See Also

Reference

StyleInfo Class
StyleInfo Members