Spread Windows Forms 12.0 Product Documentation
ResetNoteIndicatorPosition Method (Cell)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Cell Class : ResetNoteIndicatorPosition Method
Resets the position of the note indicator.
Syntax
'Declaration
 
Public Sub ResetNoteIndicatorPosition() 
'Usage
 
Dim instance As Cell
 
instance.ResetNoteIndicatorPosition()
public void ResetNoteIndicatorPosition()
Example
This example uses the ResetNoteIndicatorPosition method.
fpSpread1.ActiveSheet.SetNote(2, 0, "Head of Development");
FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo nsinfo = new FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo();
nsinfo = fpSpread1.ActiveSheet.GetStickyNoteStyleInfo(2, 0);
nsinfo.BackColor = Color.Bisque;
nsinfo.Font = new Font("Tahoma", 10);            
fpSpread1.ActiveSheet.SetStickyNoteStyleInfo(2, 0, nsinfo);
fpSpread1.Sheets[0].Cells[2, 0].NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomLeft;
fpSpread1.Sheets[0].Cells[2, 0].ResetNoteIndicatorPosition();
FpSpread1.ActiveSheet.SetNote(2, 0, "Head of Development")
Dim nsinfo As FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo = New FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo()
nsinfo = FpSpread1.ActiveSheet.GetStickyNoteStyleInfo(2, 0)
nsinfo.BackColor = Color.Bisque
nsinfo.Font = New Font("Tahoma", 10)
FpSpread1.ActiveSheet.SetStickyNoteStyleInfo(2, 0, nsinfo)
FpSpread1.Sheets(0).Cells(2, 0).NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomLeft
FpSpread1.Sheets(0).Cells(2, 0).ResetNoteIndicatorPosition()
See Also

Reference

Cell Class
Cell Members