Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetTabDoubleClickEventHandler Delegate
Source of the event
Event data
ExampleExample


In This Topic
    SheetTabDoubleClickEventHandler Delegate
    In This Topic
    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
    
    See Also