Spread Windows Forms 9.0 Product Documentation
SheetTabDoubleClickEventHandler Delegate
ExampleExample 


Source of the event
Event data
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
'Declaration
 
Public Delegate Sub SheetTabDoubleClickEventHandler( _
   ByVal sender As Object, _
   ByVal e As SheetTabDoubleClickEventArgs _
) 
'Usage
 
Dim instance As New SheetTabDoubleClickEventHandler(AddressOf HandlerMethod)
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.
fpSpread1.SheetTabDoubleClick += new FarPoint.Win.Spread.SheetTabDoubleClickEventHandler(fpSpread1SheetTabDoubleClick);

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

}
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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetTabDoubleClickEventHandler Members
FarPoint.Win.Spread Namespace
SheetTabDoubleClickEventArgs Class
SheetTabDoubleClick Event

 

 


Copyright © GrapeCity, inc. All rights reserved.