Load a password-protected document
Leave feedback
This example demonstrates how to load a password-protected document.
AdvancedUsage.Loading.LoadPasswordProtectedDocument
// Specify the password
var loadOptions = new LoadOptions
{
Password = "123"
};
using (var converter = new MarkdownConverter("source.xls", loadOptions))
{
// ...
}
You may easily run the code above and see the feature in action in our GitHub examples:
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.