Resets to its default value the color of the note indicator for the style.
Syntax
Visual Basic (Declaration) | |
---|
Public Overrides Sub ResetNoteIndicatorSize() |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As NamedStyle
instance.ResetNoteIndicatorSize() |
C# | |
---|
public override void ResetNoteIndicatorSize() |
Example
This example resets the note indicator to its default size.
C# | Copy Code |
---|
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle();
ns.NoteIndicatorSize = new Size(20, 20);
ns.Name = "Note Style";
ns.Name = "StyleData";
ns.Parent = "DataAreaDefault";
ns.VisualStyles = FarPoint.Win.VisualStyles.Off;
fpSpread1.NamedStyles.Add(ns);
fpSpread1.ActiveSheet.Cells[0, 0].StyleName = "StyleData";
fpSpread1.ActiveSheet.Cells[0, 0].Note = "Test";
private void Button1Click(object sender, System.EventArgs e)
{
ns.ResetNoteIndicatorSize();
}
|
Visual Basic | Copy Code |
---|
Dim ns As New FarPoint.Win.Spread.NamedStyle
ns.NoteIndicatorSize = New Size(20, 20)
ns.Name = "Note Style"
ns.Name = "StyleData"
ns.Parent = "DataAreaDefault"
ns.VisualStyles = FarPoint.Win.VisualStyles.Off
FpSpread1.NamedStyles.Add(ns)
FpSpread1.ActiveSheet.Cells(0, 0).StyleName = "StyleData"
FpSpread1.ActiveSheet.Cells(0, 0).Note = "Test"
Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ns.ResetNoteIndicatorSize()
End Sub |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also