Load password-protected documents
Leave feedback
On this page
GroupDocs.Comparison allows you to compare documents that are protected with a password.
To compare password-protected documents, follow these steps:
- Instantiate the
LoadOptions
object. Specify source document password; - Instantiate the
Comparer
object. Specify the source document path or stream andLoadOptions
object created in the previous step. - Instantiate another
LoadOptions
object. Specify the target document password. - Call the
add()
method. Specify the target document path or stream and theLoadOptions
object created in the previous step. - Call the
compare()
method.
The following code snippet shows how to compare password-protected documents:
const comparer = new groupdocs.comparison.Comparer(sourceExcelDocument, new groupdocs.comparison.LoadOptions("password"));
comparer.add(targetExcelDocument, new groupdocs.comparison.LoadOptions("password"));
comparer.compare(resultExcelDocument);
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.