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


In This Topic
    LeftChangeEventHandler Delegate
    In This Topic
    Represents a defined method that handles the LeftChange event for the Spread component.
    Syntax
    'Declaration
     
    Public Delegate Sub LeftChangeEventHandler( _
       ByVal sender As Object, _
       ByVal e As LeftChangeEventArgs _
    ) 
    'Usage
     
    Dim instance As New LeftChangeEventHandler(AddressOf HandlerMethod)
    public delegate void LeftChangeEventHandler( 
       object sender,
       LeftChangeEventArgs e
    )

    Parameters

    sender
    Source of the event
    e
    Event data
    Remarks
    For information on the event, refer to the FpSpread LeftChange event.
    Example
    This example creates the LeftChange event.
    fpSpread1.LeftChange += new FarPoint.Win.Spread.LeftChangeEventHandler(fpSpread1LeftChange);
    
    private void fpSpread1LeftChange(object sender, FarPoint.Win.Spread.LeftChangeEventArgs e)
    {
    
    }
    
    Dim eh As FarPoint.Win.Spread.LeftChangeEventHandler = AddressOf FpSpread1LeftChange
    AddHandler FpSpread1.LeftChange, eh
    
    Private Sub FpSpread1LeftChange(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.LeftChangeEventArgs) Handles FpSpread1.LeftChange
    
    End Sub
    
    See Also