Sort Score
Result 10 results
Languages All
Labels All
Results 191 - 200 of 2,124 for

properties

(0.02 sec)
  1. 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....format-specific metadata properties. The Metadata API is very...Resource Blocks, ID3, document properties, etc Manage audio metadata:...

    docs.groupdocs.com/metadata/net/groupdocs-metad...
  2. Search for built-in Metadata signatures | Docum...

    This article explains how to provide advanced search for metadata electronic signatures with GroupDocs.Signature API....built-in metadata properties. Using property of allows to collect...built-in metadata properties of document. These properties are like document...

    docs.groupdocs.com/signature/net/search-for-bui...
  3. Remove Metadata from XLSX using C#

    Efficiently grasp the knowledge of how to remove metadata from XLSX using C#. Also, you'll get a code example demonstrating how to clean metadata from XLSX in C#....creation dates, and document properties, must be removed prior to...modification dates, document properties like title and keywords,...

    kb.groupdocs.com/redaction/net/remove-metadata-...
  4. Read Metadata from PDF using C#

    Learn how to read metadata from PDF using C# without requiring extra software installation. Delve into a code sample demonstrating how to read metadata of PDF using C#....Loop through each of the properties one by one Extracting metadata...valuable insights into document properties such as title, author, creation...

    kb.groupdocs.com/metadata/net/read-metadata-fro...
  5. 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...
  6. 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...
  7. Show gap lines instead of changes | Documentation

    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 Node.js via Java....ShowInsertedContent and ShowDeletedContent properties to configure the content...output file. Use the LeaveGaps property to adjust the display of the...

    docs.groupdocs.com/comparison/nodejs-java/show-...
  8. Search for built-in Metadata signatures | Docum...

     This article explains how to provide advanced search for metadata electronic signatures with GroupDocs.Signature API....built-in metadata properties. Using property of allows to collect...built-in metadata properties of document. These properties are like document...

    docs.groupdocs.com/signature/java/search-for-bu...
  9. GroupDocs.Metadata Overview | Documentation

    What is GroupDocs.Metadata? GroupDocs.Metadata for Java is a full featured class library which allows users to read and edit metadata associated with various document, image, audio, video and many other formats. It works with most notable metadata standards: XMP, EXIF, IPTC, Image Resource Blocks, ID3 and format-specific metadata Properties. The Metadata API is very flexible and easy to operate with. It provides extended capabilities allowing working with metadata in a unified way regardless of the file format....format-specific metadata properties. The Metadata API is very...Resource Blocks, ID3, document properties, etc Manage audio metadata:...

    docs.groupdocs.com/metadata/java/groupdocs-meta...
  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....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-...