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


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

    Parameters

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