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


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

    Parameters

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