Back to Devexpress

Document.Encryption Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-document-f6b9cc58.md

latest1.9 KB
Original Source

Document.Encryption Property

Provides access for the document’s encryption options.

Namespace : DevExpress.XtraRichEdit.API.Native

Assembly : DevExpress.RichEdit.v25.2.Core.dll

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
DocumentEncryption Encryption { get; }
vb
ReadOnly Property Encryption As DocumentEncryption

Property Value

TypeDescription
DocumentEncryption

An object containing encryption options.

|

Remarks

Use the DocumentEncryption options to password-encrypt a document. Specify the encryption type and password, as shown below:

csharp
server.Document.Encryption.Type = DevExpress.XtraRichEdit.API.Native.EncryptionType.Strong;
server.Document.Encryption.Password = "12345";

server.SaveDocument("EncryptedWithNewPassword.docx", DocumentFormat.Docx);
vb
server.Document.Encryption.Type = DevExpress.XtraRichEdit.API.Native.EncryptionType.Strong
server.Document.Encryption.Password = "12345"

server.SaveDocument("EncryptedWithNewPassword.docx", DocumentFormat.Docx)

See Also

Document Interface

Document Members

DevExpress.XtraRichEdit.API.Native Namespace