windowsforms-devexpress-dot-xtrarichedit-db6d71db.md
A method that will handle the EncryptDocumentFormShowing event.
Namespace : DevExpress.XtraRichEdit
Assembly : DevExpress.XtraRichEdit.v25.2.dll
NuGet Package : DevExpress.Win.RichEdit
public delegate void EncryptDocumentFormShowingEventHandler(
object sender,
EncryptDocumentFormShowingEventArgs e
);
Public Delegate Sub EncryptDocumentFormShowingEventHandler(
sender As Object,
e As EncryptDocumentFormShowingEventArgs
)
| Name | Type | Description |
|---|---|---|
| sender | Object |
The event sender. Identifies the RichEditControl that raised the event.
| | e | EncryptDocumentFormShowingEventArgs |
A EncryptDocumentFormShowingEventArgs object that contains the event data.
|
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