Sort Score
Result 10 results
Languages All
Labels All
Results 321 - 330 of 424 for

custom temporary file manager

(0.43 sec)
  1. Extract metadata from Microsoft Office PowerPoi...

    Learn how to extract metadata from PowerPoint presentations (.ppt, .pptx) using GroupDocs.Parser for .NET. Extract document properties like author, title, creation date, and comments from presentation Files....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/parser/net/extract-metadata-...
  2. Indexing password protected documents | GroupDocs

    This page describes how to perform indexing of password protected documents. Indexing using the password dictionary To perform indexing of password protected documents using a password dictionary, you must add passwords for all protected documents to the dictionary before indexing. To add a document password to the dictionary, you must specify the full path to the document as a key and the actual password to the document. For more information about managing the password dictionary see the Document passwords page in the Managing dictionaries section....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/search/java/indexing-passwor...
  3. Features overview | GroupDocs

    Render documents to HTML, PNG, JPEG, PDF. Extract text, list attachments, and transform pages with GroupDocs.Viewer for Python....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/viewer/python-net/features-o...
  4. Images | GroupDocs

    Learn about managing metadata for Images formats....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/metadata/net/images/
  5. Working with metadata in EPUB E-Books | GroupDocs

    What is EPUB? EPUB is an e-book File format that uses the “.epub” File extension. EPUB is supported by many e-readers, and compatible software is available for most smartphones, tablets, and computers. Note Please find more information on the format at https://en.wikipedia.org/wiki/EPUB Reading EPUB format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from EPUB Files. The following are the steps to read native EPUB metadata. Load an EPUB File Get the root metadata package Extract the native metadata package using EpubRootPackage....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. 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 JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iTemporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  7. 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....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/metadata/java/getting-known-...
  8. Install GroupDocs.Conversion for Java | GroupDocs

    Learn how to install GroupDocs.Conversion for Java. Follow a step-by-step guide for Maven, Gradle, Kotlin, and manual JAR setup, and integrate seamless document conversion into your Java projects....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/conversion/java/installation/
  9. Load Markup document with options | GroupDocs

    Learn this article and check how to load and convert HTML documents with advanced options using GroupDocs.Conversion for Java API....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/conversion/java/load-markup-...
  10. Working with CAD metadata | GroupDocs

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD Files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.CadPackage property. The following code snippet reads metadata associated with a CAD File. AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...

    docs.groupdocs.com/metadata/net/working-with-ca...