officefileapi-devexpress-dot-xtrarichedit-2977102a.md
A method that will handle the HeaderFooterEditing event.
Namespace : DevExpress.XtraRichEdit
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
[ComVisible(true)]
public delegate void HeaderFooterEditingEventHandler(
object sender,
HeaderFooterEditingEventArgs e
);
<ComVisible(True)>
Public Delegate Sub HeaderFooterEditingEventHandler(
sender As Object,
e As HeaderFooterEditingEventArgs
)
| Name | Type | Description |
|---|---|---|
| sender | Object |
The event sender (typically a RichEditControl).
| | e | HeaderFooterEditingEventArgs |
A HeaderFooterEditingEventArgs object that contains event data.
|
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