Sort Score
Result 10 results
Languages All
Labels All
Results 3,971 - 3,980 of 23,023 for

docx

(0.84 sec)
  1. Load from a stream | GroupDocs

    This example demonstrates how to load a file from a stream. advanced_usage.loading_files.LoadFromStream // Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata metadata = new Metadata(stream)) { // Extract, edit or remove metadata here } } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for ....and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  2. Load a file of a specific format | GroupDocs

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat JavaScript try { var loadOptions = new LoadOptions(FileFormat.Spreadsheet); const metadata = new groupdocs.metadata.Metadata("input.xls", loadOptions); var root = metadata.getRootPackageGeneric(); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  3. GroupDocs conversion using converter method is ...

    Sample Code snippet: private String convertToPdfIfRequired(String originalFilePath, String sharedDirectory, int sortOrder) { if (originalFilePath == null || sharedDirectory == null) { log.error(“Original file path or …...of("doc", "docx", "xls", "xlsx").contains(extension))...

    forum.groupdocs.com/t/groupdocs-conversion-usin...
  4. Get supported file formats | GroupDocs

    This article shows that how to get the list of all supported file formats of GroupDocs.Redaction by using Python....docx) Word Document Template (.dot)...

    docs.groupdocs.com/redaction/python-net/get-sup...
  5. Billing Consolidator Demo | GroupDocs

    Learn how to consolidate invoices, receipts, and supporting documents into a single PDF using GroupDocs.Merger for Python via .NET....Sample source files (PDF, JPG, DOCX) │ ├── invoice.pdf │ ├── invoice-protected...├── terms.pdf │ └── warranty.docx └── Result/ # Generated PDFs...

    docs.groupdocs.com/merger/python-net/getting-st...
  6. Load from local disc | GroupDocs

    This article shows how the redaction API is used to load file from disk....docx" ) as redactor : # Apply the...load_from_local_disc () sample.docx sample.docx is the sample file used...

    docs.groupdocs.com/redaction/python-net/load-fr...
  7. Convert files to various formats | GroupDocs

    Artcles listed in this page explain the common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Markdown API...docx" ); // # Quarterly Report //...MarkdownConverter . ToFile ( "business-plan.docx" , "static-methods.md" ); Instance...

    docs.groupdocs.com/markdown/net/convert/
  8. Save in original format | GroupDocs

    This article demonstrates that how to save file in its original format with current date as a suffix...docx" )) { // Here we can use document...document formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails...

    docs.groupdocs.com/redaction/net/save-in-origin...
  9. Releasing GroupDocs.Editor for .NET API- Perfor...

    We are pleased to announce the release of GroupDocs.Editor for .NET API which makes it easier to perform document editing operations and conversion of edited document with simple line of code with various supported document formats. Document Editing API allows user to convert supported document format into HTML and apply changes in any WYSIWYG HTML Editor, it also provide facility to convert back HTML document in same format or in other supported document format with changes made....for following file formats: # DOCX DOC DOCM ODT OTT RTF HTML MHTML...

    blog.groupdocs.com/editor/introducing-groupdocs...
  10. Load a password-protected document | GroupDocs

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const metadata = new groupdocs.metadata.Metadata("protected.Docx", loadOptions); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...docx" , loadOptions ); } More resources...and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...