Spread Windows Forms 6.0 Product Documentation
NoteStyle Enumeration
Example  See Also  Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : NoteStyle Enumeration


Glossary Item Box

Specifies how the cell notes are displayed.

Syntax

Visual Basic (Declaration) 
Public Enum NoteStyle 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As NoteStyle
C# 
public enum NoteStyle : System.Enum 

Members

MemberDescription
HiddenDoes not display the cell note or the cell note indicator
PopupNoteDisplays the cell note as a floating object only when the mouse is over the cell note indicator
PopupStickyNoteDisplays the cell sticky note as a floating object only when the mouse is over the cell note indicator
StickyNoteDisplays the cell note always as a movable box

Example

C#Copy Code
fpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development");
fpSpread1.ActiveSheet.Cells[0, 0].NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote;
Visual BasicCopy Code
FpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development")
FpSpread1.ActiveSheet.Cells(0, 0).NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.NoteStyle

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.