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
Parameters
- sender
- Source of the event
- e
- Event data
Remarks
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 Basic | Copy 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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also