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


sender
Source of the event
e
Event data

Glossary Item Box

Represents a defined method that handles the SheetTabDoubleClick event for the Spread component. which occurs when the user double-clicks the mouse button with the pointer on the sheet name tab.

Syntax

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

Parameters

sender
Source of the event
e
Event data

Remarks

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

Example

This example creates the SheetTabDoubleClick event.
C#Copy Code
fpSpread1.SheetTabDoubleClick += new FarPoint.Win.Spread.SheetTabDoubleClickEventHandler(fpSpread1SheetTabDoubleClick);

private void fpSpread1SheetTabDoubleClick(object sender, FarPoint.Win.Spread.SheetTabDoubleClickEventArgs e)
{

}
Visual BasicCopy Code
Dim eh As FarPoint.Win.Spread.SheetTabDoubleClickEventHandler = AddressOf FpSpread1SheetTabDoubleClick
AddHandler FpSpread1.SheetTabDoubleClick, eh

Private Sub FpSpread1SheetTabDoubleClick(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SheetTabDoubleClickEventArgs)
Handles FpSpread1.SheetTabDoubleClick

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.