Back to Devexpress

EncryptDocumentFormShowingEventHandler Delegate

windowsforms-devexpress-dot-xtrarichedit-db6d71db.md

latest1.9 KB
Original Source

EncryptDocumentFormShowingEventHandler Delegate

A method that will handle the EncryptDocumentFormShowing event.

Namespace : DevExpress.XtraRichEdit

Assembly : DevExpress.XtraRichEdit.v25.2.dll

NuGet Package : DevExpress.Win.RichEdit

Declaration

csharp
public delegate void EncryptDocumentFormShowingEventHandler(
    object sender,
    EncryptDocumentFormShowingEventArgs e
);
vb
Public Delegate Sub EncryptDocumentFormShowingEventHandler(
    sender As Object,
    e As EncryptDocumentFormShowingEventArgs
)

Parameters

NameTypeDescription
senderObject

The event sender. Identifies the RichEditControl that raised the event.

| | e | EncryptDocumentFormShowingEventArgs |

A EncryptDocumentFormShowingEventArgs object that contains the event data.

|

Remarks

When creating a EncryptDocumentFormShowingEventHandler delegate, you identify the method that will handle the corresponding event. To associate an 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 Events and Delegates in MSDN.

See Also

DevExpress.XtraRichEdit Namespace