Back to Devexpress

ColumnWidthChangedEventHandler Delegate

officefileapi-devexpress-dot-spreadsheet-41403158.md

latest1.8 KB
Original Source

ColumnWidthChangedEventHandler Delegate

A method that handles the SpreadsheetControl.ColumnWidthChanged event.

Namespace : DevExpress.Spreadsheet

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
[ComVisible(true)]
public delegate void ColumnWidthChangedEventHandler(
    object sender,
    ColumnWidthChangedEventArgs e
);
vb
<ComVisible(True)>
Public Delegate Sub ColumnWidthChangedEventHandler(
    sender As Object,
    e As ColumnWidthChangedEventArgs
)

Parameters

NameTypeDescription
senderObject

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

DevExpress.Spreadsheet Namespace