Spread Windows Forms 10.0 Product Documentation
NoteIndicatorSize Property (NamedStyle)
Example 


Gets or sets the size of the cell note indicator.
Syntax
'Declaration
 
Public Overrides Property NoteIndicatorSize As Size
'Usage
 
Dim instance As NamedStyle
Dim value As Size
 
instance.NoteIndicatorSize = value
 
value = instance.NoteIndicatorSize
public override Size NoteIndicatorSize {get; set;}
Example
This example sets the size of the note indicator.
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();
}
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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

NamedStyle Class
NamedStyle Members

 

 


Copyright © GrapeCity, inc. All rights reserved.