This example demonstrates how to load a password-protected document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...
It supports DOCX, DOCM, DOC, DOT, DOTM, XLS, XLSX, PDF, PPT, JPG, PNG, HTML, EML and many more...Metadata Product Solution GroupDocs...Word Document Content and metadata Microsoft Word 97+ Microsoft...
This article contains a good example of numeric flag or enumeration....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...
Home GroupDocs.Metadata Product Family Browse our Products Toggle navigation Are you looking for an evaluation versio......Metadata Product Family Browse our Products Toggle...files. GroupDocs.Metadata for .NET GroupDocs.Metadata for .NET API...
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 (MetadataMetadata = 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...
Get ZIP format Metadata The API allows detecting ZIP archives and reading format Metadata. The following steps are needed to be followed:
Load a ZIP archive Get the root Metadata package Extract the native Metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get Metadata from a ZIP archive.
advanced_usage.managing_Metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...
Get ZIP format Metadata The API allows detecting ZIP archives and reading format Metadata. The following steps are needed to be followed:
Load a ZIP archive Get the root Metadata package Extract the native Metadata package using ZipRootPackage.ZipPackage Read the ZIP archive properties Loop through ZipPackage.Files to extract information about archived files The following code snippet shows how to get Metadata from a ZIP archive.
AdvancedUsage.ManagingMetadataForSpecificFormats.Archive.ZipReadNativeMetadataProperties
Encoding encoding = Encoding....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...