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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Cell Class : NoteIndicatorSize Property
Gets or sets the size for the note indicator for a cell.
Syntax
'Declaration
 
Public Property NoteIndicatorSize As Size
'Usage
 
Dim instance As Cell
Dim value As Size
 
instance.NoteIndicatorSize = value
 
value = instance.NoteIndicatorSize
public Size NoteIndicatorSize {get; set;}

Property Value

Size object containing the dimensions of the cell note indicator
Example
This example sets the size of the note indicator.
fpSpread1.ActiveSheet.Cells[0, 0].NoteIndicatorSize = new Size(10, 10);
fpSpread1.ActiveSheet.SetNote(0, 0, "Test");
FpSpread1.ActiveSheet.Cells(0, 0).NoteIndicatorSize = New Size(10, 10)
FpSpread1.ActiveSheet.SetNote(0, 0, "Test")
See Also

Reference

Cell Class
Cell Members