This article describes how to load input document to the GroupDocs.Editor and how to apply load options.
First of all the input document, which should be accessible as a byte stream or through valid file path, should be loaded into the GroupDocs.Editor by creating an instance of the Editor class through one of the constructor overloads.
Source code below shows two ways of loading documents: from path and from stream.
//through path
StringinputFilePath="C:\\input_path\\document.docx";//path to some document
Editoreditor=newEditor(inputFilePath);//through stream
InputStreaminputStream=newFileInputStream(inputFilePath);Editoreditor=newEditor(inputStream);
When two overloads from example above are used, GroupDocs.Editor automatically detects the format of input document and applies the most appropriate default loading options for the input document.
However, it is possible and even recommended to specify correct loading options explicitly using constructor overloads, which accept two parameters. Source code below shows using such options.
//through path
StringinputFilePath="C:\\input_path\\document.docx";//path to some document
WordProcessingLoadOptionswordLoadOptions=newWordProcessingLoadOptions();Editoreditor1=newEditor(inputFilePath,wordLoadOptions);//passing path and load options (via delegate) to the constructor
//through stream
InputStreaminputStream=newByteArrayInputStream(newbyte[0]);//obtained from somewhere
SpreadsheetLoadOptionsspreadsheetLoadOptions=newSpreadsheetLoadOptions();Editoreditor=newEditor(inputStream,spreadsheetLoadOptions);
Please note that not all document formats have appropriate classes, that represent load options. As for version 19.10, only WordProcessing, Spreadsheet and Presentation family formats have load options. For other document types, such as DSV, TXT or XML, there are no load options.
Format family
Example formats
Load options class
WordProcessing
DOC, DOCX, DOCM, DOT, ODT
WordProcessingLoadOptions
Spreadsheet
XLS, XLSX, XLSM, XLSB
SpreadsheetLoadOptions
Presentation
PPT, PPTX, PPS, POT
PresentationLoadOptions
Using load options is the only way for working with password-protected input documents. Any document can be loaded into the Editor instance, even encoded document without the password. However, on the next step — opening for editing, — the exception will be thrown. GroupDocs.Editor handles passwords and encoded documents in the next way:
If document is not encoded, password is ignored anyway, whether or not it was specified.
If document is password-protected, but password is not specified, the PasswordRequiredException will be thrown later during editing.
If document is password-protected, and password is specified, but is incorrect, the IncorrectPasswordException will be thrown later during editing.
Example below shows specifying password for opening some password-protected WordProcessing document.