Back to Devexpress

RowHeightChangedEventHandler Delegate

officefileapi-devexpress-dot-spreadsheet-d88c4467.md

latest1.7 KB
Original Source

RowHeightChangedEventHandler Delegate

A method that handles the SpreadsheetControl.RowHeightChanged event.

Namespace : DevExpress.Spreadsheet

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

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

Parameters

NameTypeDescription
senderObject

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

| | e | RowHeightChangedEventArgs |

An object that contains event data.

|

Remarks

When you create a RowHeightChangedEventHandler delegate, you identify the method that handles the SpreadsheetControl.RowHeightChanged 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