Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

EncryptionSettings Class

Base implementation of the DocumentEncryption interface.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

public class EncryptionSettings :
    DocumentEncryption

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);

Implements

Inheritance

Object
EncryptionSettings
See Also