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


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

    Parameters

    sender
    Source of the event
    e
    Event data
    Remarks
    For information on the event, refer to the FpSpread ColumnWidthChanged event.
    Example
    This example creates the ColumnWidthChanged event.
    fpSpread1.ColumnWidthChange += new FarPoint.Win.Spread.ColumnWidthChangeEventHandler(fpSpread1ColumnWidthChange);
    
    private void fpSpread1ColumnWidthChange(object sender, FarPoint.Win.Spread.ColumnWidthChangeEventArgs e)
    {
    
    }
    
    Dim eh As FarPoint.Win.Spread.ColumnWidthChangeEventHandler = AddressOf FpSpread1ColumnViewportWidthChange
    AddHandler FpSpread1.ColumnWidthChange, eh
    
    Private Sub FpSpread1ColumnWidthChange(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ColumnViewportWidthChangeEventArgs)
    Handles FpSpread1.ColumnWidthChange
    
    End Sub
    
    See Also