Sort Score
Result 10 results
Languages All
Labels All
Results 751 - 760 of 30,982 for

metadata

(0.04 sec)
  1. Load from a stream | Documentation

    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 ....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  2. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/getting-known-p...
  3. GroupDocs.Redaction for .NET

    This API allows you to redact, hide, or remove private contents in any type of file format using C# .NET language on any platform....Metadata Product Family GroupDocs.Search...C# Remove Metadata from RTF using C# Remove Metadata from PPTX...

    kb.groupdocs.com/redaction/net/
  4. Load from a local disk | Documentation

    The following example demonstrates how to load a file from a local disk. advanced_usage.loading_files.LoadFromLocalDisk // Constants.InputOne is an absolute or relative path to your document. Ex: @"C:\Docs\source.one" try (Metadata Metadata = new Metadata(Constants.InputOne)) { // 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 .NET examples GroupDocs.Metadata for Java examples...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-from-a-lo...
  5. Load from a local disk | Documentation

    The following example demonstrates how to load file from local disk....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/load-from-a-loc...
  6. MP3 Tags Editor – View & Edit MP3 Tags

    Discover ways to view and edit MP3 Metadata. Either edit MP3 Tags online or do it programmatically using C# & Java....files by viewing and editing metadata MP3 tags online. Discover...a simple task using online metadata editing apps. Let’s accomplish...

    blog.groupdocs.com/metadata/view-edit-mp3-tags/
  7. 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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/getting-known-...
  8. Basic Usage | Documentation

    Quick Start section for GroupDocs.Metadata API Manage Metadata in your documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/basic-us...
  9. GroupDocs.Redaction for Java

    This API allows you to redact, hide, or remove private contents in any type of file format using Java language on any platform....Metadata Product Family GroupDocs.Search...Java Remove Metadata from RTF using Java Remove Metadata from PPTX...

    kb.groupdocs.com/redaction/java/
  10. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/save-a-modified...