Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / DataColumnConfigureEventHandler Delegate
Source of the DataColumnConfigure event
Event arguments
ExampleExample


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

    Parameters

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