Sort Score
Result 10 results
Languages All
Labels All
Results 151 - 160 of 2,396 for

properties

(0.11 sec)
  1. Working with interpreted values | GroupDocs

    This article contains a good example of numeric flag or enumeration....what a particular metadata property is supposed to mean. A good...good example of such vague property is a numeric flag or enumeration...

    docs.groupdocs.com/metadata/net/working-with-in...
  2. Releasing GroupDocs.Metadata for .NET - Control...

    We are happy to release GroupDocs.Metadata for .NET API to work with metadata associated with various document and image formats. The API facilitates the user with simple syntax, easy to use methods and few lines of code to perform metadata operations. It provides the support of many popular document and image formats and the number is going to increase in next release. Why GroupDocs.Metadata Is Developed? Metadata is structured information that is used to contain important business information of different resources....Working with Built-in metadata properties in documents Working with...with Custom metadata properties in documents Working with EXIF metadata...

    blog.groupdocs.com/metadata/control-and-process...
  3. Working with interpreted values | GroupDocs

    Understand and extract human-readable (interpreted) values for metadata Properties using GroupDocs.Metadata for Python via .NET....what a particular metadata property is supposed to mean. A good...good example of such vague property is a numeric flag or enumeration...

    docs.groupdocs.com/metadata/python-net/working-...
  4. Working with EXIF metadata | GroupDocs

    Access, read, update, and remove EXIF metadata using GroupDocs.Metadata for Python via .NET....defines a way to store metadata properties in a variety of well-known...standard: Reading basic EXIF properties To access EXIF metadata in...

    docs.groupdocs.com/metadata/python-net/working-...
  5. Clean Metadata of Documents and Images using Java

    Java API to remove all or selective metadata Properties of DOCX, XLSX, PPTX, PDF documents, JPEG, PNG, WebP images, email, eBooks, Visio Drawings, Zip, etc....all the available metadata properties without applying any filter...number of the removed metadata properties. Save the output file with...

    blog.groupdocs.com/metadata/remove-metadata-fro...
  6. 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...
  7. 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...
  8. Remove Metadata from RTF using Java

    Learn how to efficiently remove metadata from RTF using Java with an example that shows how to delete metadata from RTF in Java without need of additional software....constructor Remove metadata properties by calling the Metadata.removeProperties...demonstrating how to clear metadata properties in RTF using Java . Code...

    kb.groupdocs.com/metadata/java/remove-metadata-...
  9. Show gap lines instead of changes | GroupDocs

    This article explains how to adjust the display of the output document so that the changed content is replaced with empty lines in GroupDocs.Comparison for .NET.... Use the and properties to configure the content...of the output file. Use the property to adjust the display of the...

    docs.groupdocs.com/comparison/net/show-gap-lines/
  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-...