Spread Windows Forms 6.0 Product Documentation
StickyNoteSized Event
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : StickyNoteSized Event


Glossary Item Box

Obsoleted. Use NoteSized instead. Occurs when a sticky note is sized on the sheet.

Syntax

Visual Basic (Declaration) 
Public Event StickyNoteSized As StickyNoteEventHandler
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim handler As StickyNoteEventHandler
 
AddHandler instance.StickyNoteSized, handler
C# 
public event StickyNoteEventHandler StickyNoteSized

Event Data

The event handler receives an argument of type StickyNoteEventArgs containing data related to this event. The following StickyNoteEventArgs properties provide information specific to this event.

PropertyDescription
StickyNoteStyleInfo Gets the style information of the sticky note.

Example

This example shows the use of the StickyNoteSized event handling.
C#Copy Code
private void FpSpread1_Sheet1_StickyNoteSized(object sender, FarPoint.Win.Spread.StickyNoteEventArgs e)
{
        e.StickyNoteStyleInfo.BackColor = Color.Blue;
}
Visual BasicCopy Code
Private Sub FpSpread1_Sheet1_StickyNoteSized(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.StickyNoteEventArgs) Handles FpSpread1_Sheet1.StickyNoteSized
        e.StickyNoteStyleInfo.BackColor = Color.Blue
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

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