Skip to main content
All docs
V25.1
  • Row

    ColumnWidthChangedEventHandler Delegate

    A method that handles the SpreadsheetControl.ColumnWidthChanged event.

    Namespace: DevExpress.Spreadsheet

    Assembly: DevExpress.Spreadsheet.v25.1.Core.dll

    NuGet Package: DevExpress.Spreadsheet.Core

    Declaration

    [ComVisible(true)]
    public delegate void ColumnWidthChangedEventHandler(
        object sender,
        ColumnWidthChangedEventArgs e
    );

    Parameters

    Name Type Description
    sender Object

    The event source. This parameter identifies the SpreadsheetControl that raised the event.

    e ColumnWidthChangedEventArgs

    An object that contains event data.

    Remarks

    When you create a ColumnWidthChangedEventHandler delegate, you identify the method that handles the SpreadsheetControl.ColumnWidthChanged event. Add a delegate instance to the event to associate the event with your event handler. The event handler is called whenever the event occurs, unless you remove the delegate. See Handling and Raising Events for more information about event-handler delegates.

    See Also