Sort Score
Result 10 results
Languages All
Labels All
Results 921 - 930 of 30,544 for

groupdocs metadata

(0.05 sec)
  1. Working with interpreted values | Documentation

    This article contains a good example of numeric flag or enumeration....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-in...
  2. Advanced Usage | Documentation

    Open Navigation Close Navigation Products Groupdocs.Total Product Family Groupdocs.Viewer Product Solution Groupdocs.......Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/advanced-usage/
  3. GroupDocs.Metadata Overview | Documentation

    The Metadata is a data which shows information about other data. It should not be considered as the content of the data. Various types of Metadata are existed such as, descriptive, structural, administrative, reference, statistical and legal Metadata....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/groupdocs-metad...
  4. Documents | Documentation

    Learn about managing Metadata for Documents formats....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/documents/
  5. Advanced Usage | Documentation

    Learn about the advance usage of Metadata API...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/advanced-usage/
  6. remove exif data from images on GroupDocs Blog ...

    remove exif data from images on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in remove exif data from images on Groupdocs Blog | Document Automation Solu......exif data from images on GroupDocs Blog | Document Automation...exif data from images on GroupDocs Blog | Document Automation...

    blog.groupdocs.com/ar/tag/remove-exif-data-from...
  7. remove exif data from images on GroupDocs Blog ...

    remove exif data from images on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in remove exif data from images on Groupdocs Blog | Document Automation Solu......exif data from images on GroupDocs Blog | Document Automation...exif data from images on GroupDocs Blog | Document Automation...

    blog.groupdocs.com/cs/tag/remove-exif-data-from...
  8. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/load-a-file-of-...
  9. Migration Notes | Documentation

    Why To Migrate? Here are the key reasons to use the new API provided by Groupdocs.Metadata for .NET starting from version 19.11: The* Metadata* class is introduced as a single entry point to manage Metadata in files of all supported formats. Extracting and updating Metadata was unified for all supported formats. The product architecture was redesigned from scratch in order to simplify most common operations with Metadata properties. Getting document information and preview generation procedures were simplified....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/migration-notes/
  10. Getting known property descriptors | Documentation

    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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

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