Skip to main content
A newer version of this page is available. .

OpenXmlDocumentImporterOptions.EncryptionPassword Property

Gets or sets a password used to unprotect a password-protected Office Open XML document (.xlsx) during import. Use the WorkbookImportOptions.Password property instead.

Namespace: DevExpress.XtraSpreadsheet.Import

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

[Browsable(false)]
public string EncryptionPassword { get; set; }

Property Value

Type Description
String

A string that is the password to unprotect a document.

Property Paths

You can access this nested property as listed below:

Object Type Path to EncryptionPassword
WorkbookImportOptions
.Xltx.EncryptionPassword

Remarks

Use the WorkbookImportOptions.Password property instead. That property works for binary .xls as well as for OpenXml .xlsx files. For an example of use refer to the How to: Open and Save a Password Encrypted File article.

See Also