Spread Windows Forms 12.0 Product Documentation
ResetNoteIndicatorColor Method (Row)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Row Class : ResetNoteIndicatorColor Method
Resets the color of the note indicator for cells in this row to the default value.
Syntax
'Declaration
 
Public Sub ResetNoteIndicatorColor() 
'Usage
 
Dim instance As Row
 
instance.ResetNoteIndicatorColor()
public void ResetNoteIndicatorColor()
Example

This example shows the use of the method by resetting the cell note indicator color for the first row.

FarPoint.Win.Spread.row r;
r=fpSpread1.ActiveSheet.Rows[0];
r.ResetNoteIndicatorColor();
Dim r As FarPoint.Win.Spread.Row
r=FpSpread1.ActiveSheet.Rows(0)
r.ResetNoteIndicatorColor()
See Also

Reference

Row Class
Row Members