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


sender
Source of the event
e
Event data

Glossary Item Box

Represents a defined method that handles the EditModeStarting event for the Spread component.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub EditModeStartingEventHandler( _
   ByVal sender As Object, _
   ByVal e As EditModeStartingEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New EditModeStartingEventHandler(AddressOf HandlerMethod)
C# 
public delegate void EditModeStartingEventHandler( 
   object sender,
   EditModeStartingEventArgs e
)

Parameters

sender
Source of the event
e
Event data

Remarks

For information on the event, refer to the FpSpread EditModeStarting event.

Example

This example creates the EditModeStarting event.
C#Copy Code
fpSpread1.EditModeStarting += new FarPoint.Win.Spread.EditModeStartingEventHandler(fpSpread1EditModeStarting);

private void fpSpread1EditModeStarting(object sender, FarPoint.Win.Spread.EditModeStartingEventArgs e)
{

}
Visual BasicCopy Code
Dim eh As FarPoint.Win.Spread.EditModeStartingEventHandler = AddressOf FpSpread1EditModeStarting
AddHandler FpSpread1.EditModeStarting, eh

Private Sub FpSpread1EditModeStarting(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.EditModeStartingEventArgs) Handles
FpSpread1.EditModeStarting

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.