Spread Windows Forms 12.0 Product Documentation
CellNoteIndicatorRenderer Property (SpreadView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : CellNoteIndicatorRenderer Property
Gets or sets the cell note indicator renderer.
Syntax
'Declaration
 
Public Property CellNoteIndicatorRenderer As INoteIndicatorRenderer2
'Usage
 
Dim instance As SpreadView
Dim value As INoteIndicatorRenderer2
 
instance.CellNoteIndicatorRenderer = value
 
value = instance.CellNoteIndicatorRenderer
public INoteIndicatorRenderer2 CellNoteIndicatorRenderer {get; set;}
Example
This example sets the CellNoteIndicatorRenderer property.
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.CellNoteIndicatorRenderer = new FarPoint.Win.Spread.TriangleNoteIndicatorRenderer();
sv.Sheets[0].Cells[1, 1].Note = "Test";
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.CellNoteIndicatorRenderer = New FarPoint.Win.Spread.TriangleNoteIndicatorRenderer()
sv.Sheets(0).Cells(1, 1).Note = "Test"
See Also

Reference

SpreadView Class
SpreadView Members