{overview.title}
{overview.description}
{overview.feature_1.title}
{overview.feature_1.description}
{overview.feature_2.title}
{overview.feature_2.description}
{overview.feature_3.title}
{overview.feature_3.description}
// {code.comment_1}
// Instantiate Editor object by loading the input file
Editor editor = new Editor(inputFilePath);
// Open input document for edit
EditableDocument beforeEdit = editor.edit();
// Grab document content
String content = beforeEdit.getContent();
dotnet add package GroupDocs.Editor
{overview.description}
{overview.feature_1.description}
{overview.feature_2.description}
{overview.feature_3.description}
{platforms.description}
{formats.description}
{features.description}
{features.feature_1.title}
{features.feature_1.content}
{features.feature_2.title}
{features.feature_2.content}
{features.feature_3.title}
{features.feature_3.content}
{features.feature_4.title}
{features.feature_4.content}
{features.feature_5.title}
{features.feature_5.content}
{features.feature_6.title}
{features.feature_6.content}
{features.feature_7.title}
{features.feature_7.content}
{features.feature_8.title}
{features.feature_8.content}
{features.feature_9.title}
{features.feature_9.content}
{code_samples.description}
// Instantiate Editor object by loading the input file
Editor editor = new Editor(inputFilePath);
// Open input document for edit — obtain an intermediate document, that can be edited
EditableDocument beforeEdit = editor.edit();
// Grab document content and associated resources from editable document
String content = beforeEdit.getContent();
Editor editorDocx = new Editor(docxInputFilePath);
// Check it
IDocumentInfo infoDocx = editorDocx.getDocumentInfo(null);
if (infoDocx instanceof WordProcessingDocumentInfo) {
isWordProcessing = "yes";
}