Sort Score
Result 10 results
Languages All
Labels All
Results 211 - 220 of 2,460 for

properties

(0.68 sec)
  1. GroupDocs.Metadata for Node.js overview | Group...

    Develop Applications to Create, View, Access, Update, Delete, Search, Compare, Replace & Export Metadata of Popular Documents & Image Formats....format-specific metadata properties. The Metadata API is very...Resource Blocks, ID3, document properties, etc Manage audio metadata:...

    docs.groupdocs.com/metadata/nodejs-java/product...
  2. Update Image Signatures in Document | GroupDocs

    This article explains how to update Image electronic signatures with GroupDocs.Signature for Python via .NET API....location, size, and other properties. Please note that the method...Instantiate the object with desired properties Call the method to obtain...

    docs.groupdocs.com/signature/python-net/update-...
  3. Extract Emails using POP3 and IMAP Protocol - G...

    We are pleased to announce the release of version 17.10 of the GroupDocs.Text for .NET API. The latest release removes some obsolete methods from the API while provides some additional Properties, updated parameters and improved performance of the API. The new feature added to the API in this release is the ability to extract text from the email server using POP3 and IMAP protocol. Just download the latest release or update your existing application to this release and enjoy all the features and enhancements made to the API in this release....provides some additional properties, updated parameters and improved...documentation article . Additional properties for container entities #...

    blog.groupdocs.com/parser/groupdocs.text-for-.n...
  4. Highlight PDF with Annotations using C# | Annot...

    Highlight text in PDF with highlight annotations using C#. Document and image annotation .NET API allows to Annotate PDF files by highlighting any area.... Define the highlight properties like the color, opacity,...color, opacity, and other properties. The following code sample...

    blog.groupdocs.com/annotation/highlight-pdf-wit...
  5. Remove Metadata from RTF using Java

    Quickly grasp the knowledge of how to remove metadata from RTF using Java. Also, you'll be provided with a code demonstrating how to clean metadata from RTF in Java....creation dates, document properties, and other details. While...modification dates, document properties like title and keywords,...

    kb.groupdocs.com/redaction/java/remove-metadata...
  6. Converting a multi-tab XLSX to HTML does not cr...

    When we convert a single tab spreadsheet to HTML, the result is an HTML table (this is good). However, when we convert a multi-tab spreadsheet to HTML, the result is a bunch of spans that don’t line up, instead of an HT…...are setting the following properties in the WebConvertOptions:...are setting the following properties in the SpreadsheetLoadOptio:...

    forum.groupdocs.com/t/converting-a-multi-tab-xl...
  7. Extract RIFF INFO and Metadata of WAV files in ...

    Extract metadata and RIFF INFO of WAV audio files in Java. Metadata API allows metadata management within your Java applications....Now you can access all the properties of WAV audio. The above code...the root package. Now the properties of WAV audio are accessible...

    blog.groupdocs.com/metadata/extract-riff-info-a...
  8. GroupDocs.Metadata Product Family on GroupDocs ...

    GroupDocs.Metadata Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Metadata Product Family on GroupDocs Blog | Document Autom......Metadata tags Read metadata properties from glTF file Learn how...how to read metadata properties from glTF file Edit and clean XMP...

    blog.groupdocs.com/categories/groupdocs.metadat...
  9. Update XMP Metadata of WAV File using GroupDocs...

    GroupDocs team is introducing two new features and three enhancements in the monthly release of GroupDocs.Metadata for .NET 18.6. Using the latest version, you can now edit XMP metadata of WAV file format and update metadata Properties of MPP file format. Furthermore, memory consumption for loading and saving metadata is now reduced for MPP, WAV and AVI file formats. A bug related to removing XMP metadata in Tiff file format is also resolved in the latest version....format and update metadata properties of MPP file format. Furthermore...metadata in WAV files Update properties of the Microsoft Project...

    blog.groupdocs.com/metadata/update-xmp-metadata...
  10. Getting known property descriptors | GroupDocs

    This code snippet demonstrates how to extract information about known Properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible Properties are presented in the getKnowPropertyDescriptors collection....Getting known property descriptors Getting known property descriptors...extract information about known properties that can be encountered in...

    docs.groupdocs.com/metadata/java/getting-known-...