Sort Score
Result 10 results
Languages All
Labels All
Results 2,151 - 2,160 of 4,281 for

values

(0.04 sec)
  1. How to Edit XML Files in Java | Java API for XM...

    Edit or update XML data within your Java applications. Modify XML files and save the changes in various formats using Editing Java API ....the XML data by replacing a value with another. The following...

    blog.groupdocs.com/editor/edit-xml-files-in-java/
  2. Cannot Click hyperlinks in Email Body - Free Su...

    I am currently using GroupDocs.Viewer for .NET to render and view email (msg) files. However, I have encountered an issue: when viewing emails, any hyperlinks within the email body appear as plain text and are not clicka…...HtmlViewOptions instanced to the false value. More on that here . If my assumption...

    forum.groupdocs.com/t/cannot-click-hyperlinks-i...
  3. Render DOCX as HTML using Python

    In this topic, you will learn how to render DOCX as HTML using Python. A code example will also be provided to create HTML from DOCX in Python for search engine visibility....practical way to repurpose high-value content for web publishing....

    kb.groupdocs.com/viewer/python/render-docx-as-h...
  4. How to Convert DOCX to ODT using C#

    In this article, you will explore how to convert DOCX to ODT using C# without extra software installation. Also, we will provide the code to export DOCX to ODT in C#....DOCX to ODT holds significant value, especially in scenarios involving...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  5. GroupDocs.Watermark for Python overview | Docum...

    GroupDocs.Watermark for .NET is a powerful API for managing watermarks in the various documents formats such as PDF, DOCX/DOC/RTF, PPTX/PPT, XLSX/XLS, JPG, PNG, TIFF, GIF and many others.... We value your opinion. Your feedback...

    docs.groupdocs.com/watermark/python-net/product...
  6. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook.... We value your opinion. Your feedback...

    docs.groupdocs.com/metadata/net/exporting-metad...
  7. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook in Java... We value your opinion. Your feedback...

    docs.groupdocs.com/metadata/java/exporting-meta...
  8. How to Run | Documentation

    Download from GitHub The complete examples package of GroupDocs.Metadata is hosted on Github. You can either download the ZIP file from here or clone the repository of Github using your favourite Github client. In case you download the ZIP file, extract the folders on your local disk. The extracted files and folders will look like the following image: Open IntelliJ Idea and import the project to get started with it.... We value your opinion. Your feedback...

    docs.groupdocs.com/metadata/java/how-to-run-exa...
  9. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // 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:... We value your opinion. Your feedback...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  10. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } 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.... We value your opinion. Your feedback...

    docs.groupdocs.com/metadata/java/get-supported-...