Spread Windows Forms 6.0 Product Documentation
NoteIndicatorSize Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Cell Class : NoteIndicatorSize Property


Glossary Item Box

Gets or sets the size for the note indicator for a cell.

Syntax

Visual Basic (Declaration) 
Public Property NoteIndicatorSize As Size
Visual Basic (Usage)Copy Code
Dim instance As Cell
Dim value As Size
 
instance.NoteIndicatorSize = value
 
value = instance.NoteIndicatorSize
C# 
public Size NoteIndicatorSize {get; set;}

Property Value

Size object containing the dimensions of the cell note indicator

Example

This example sets the size of the note indicator.
C#Copy Code
fpSpread1.ActiveSheet.Cells[0, 0].NoteIndicatorSize = new Size(10, 10);
fpSpread1.ActiveSheet.SetNote(0, 0, "Test");
Visual BasicCopy Code
FpSpread1.ActiveSheet.Cells(0, 0).NoteIndicatorSize = New Size(10, 10)
FpSpread1.ActiveSheet.SetNote(0, 0, "Test")

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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.