EncryptionSettings Class
Base implementation of the DocumentEncryption interface.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v19.1.Core.dll
Declaration
Remarks
Use the EncryptionSettings class to password-protect the document on saving, as shown below:
EncryptionSettings encryptionSettings = new EncryptionSettings();
encryptionSettings.Type = EncryptionType.Strong;
encryptionSettings.Password = "12345";
server.SaveDocument(fileName, documentFormat, encryptionSettings);
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the EncryptionSettings class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.