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


Glossary Item Box

Gets or sets the default size for the note indicator for cells in this row.

Syntax

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

Exceptions

ExceptionDescription
System.ArgumentOutOfRangeException Specified size is out of range; width and height must be between 0 and 9,999,999 pixels

Example

This example sets the size of the note indicator.
C#Copy Code
fpSpread1.ActiveSheet.AlternatingRows[0].NoteIndicatorSize = new Size(10, 10);
fpSpread1.ActiveSheet.SetNote(0, 0, "Test");
Visual BasicCopy Code
FpSpread1.ActiveSheet.AlternatingRows(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.