Back to Devexpress

HeaderFooterEditingEventHandler Delegate

officefileapi-devexpress-dot-xtrarichedit-2977102a.md

latest1.9 KB
Original Source

HeaderFooterEditingEventHandler Delegate

A method that will handle the HeaderFooterEditing event.

Namespace : DevExpress.XtraRichEdit

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

NuGet Package : DevExpress.RichEdit.Core

Declaration

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

Parameters

NameTypeDescription
senderObject

The event sender (typically a RichEditControl).

| | e | HeaderFooterEditingEventArgs |

A HeaderFooterEditingEventArgs object that contains event data.

|

Remarks

When you create a HeaderFooterEditingEventHandler delegate, you identify the method that handles the corresponding event. To associate the event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see the following topic: Handle and Raise Events.

See Also

DevExpress.XtraRichEdit Namespace