officefileapi-devexpress-dot-xtraspreadsheet-dot-import-dot-workbookimportoptions.md
Gets or sets a password used to unprotect a password-protected document during import.
Namespace : DevExpress.XtraSpreadsheet.Import
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public string Password { get; set; }
Public Property Password As String
| Type | Description |
|---|---|
| String |
A string value that specifies the password.
|
You can access this nested property as listed below:
| Object Type | Path to Password |
|---|---|
| DocumentOptions |
.Import .Password
|
The Password property specifies a password for opening a password-encrypted document.
The code snippet below demonstrates how to use the WorkbookImportOptions.Password property.
spreadsheetControl1.Options.Import.Password = "123";
spreadsheetControl1.LoadDocument(documentName);
spreadsheetControl1.Options.Import.Password = "123"
spreadsheetControl1.LoadDocument(documentName)
The following code snippets (auto-collected from DevExpress Examples) contain references to the Password property.
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.
winforms-spreadsheet-load-and-save-a-password-encrypted-files/CS/EncryptionExample/Form1.cs#L38
#region #OptionsImportPassword
spreadsheetControl1.Options.Import.Password = "123";
spreadsheetControl1.LoadDocument(documentName);
winforms-spreadsheet-load-and-save-a-password-encrypted-files/VB/EncryptionExample/Form1.vb#L39
#Region "#OptionsImportPassword"
spreadsheetControl1.Options.Import.Password = "123"
spreadsheetControl1.LoadDocument(documentName)
spreadsheet-document-api-encryption/VB/EncryptionExample/Program.vb#L14
Dim workbook As Workbook = New Workbook()
workbook.Options.Import.Password = "123"
workbook.LoadDocument("..\..\..\Documents\encrypted.xlsx")
See Also