Sort Score
Result 10 results
Languages All
Labels All
Results 181 - 190 of 2,141 for

properties

(0.03 sec)
  1. 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...
  2. Update metadata of MPP format using GroupDocs.M...

    GroupDocs team is introducing two new features and three enhancements in the monthly releaseof GroupDocs.Metadata for Java 18.6. The latest version allows you to edit XMP metadata of WAV file format and update metadata Properties of MPP file format. Furthermore, memory consumption for loading and saving metadata is now reduced for MPP, WAV and AVI file formats. A bug related to removing XMP metadata in TIF file format is also resolved in the latest version....format and update metadata properties of MPP file format. Furthermore...metadata in WAV files Update properties of the Microsoft Project...

    blog.groupdocs.com/metadata/update-metadata-of-...
  3. 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...
  4. 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...
  5. Footnote Comparison Issue is Resolved

    Footnote appears at bottom of the page and used to cite information. Previously, API was not comparing Footnotes correctly. But with the release of GroupDocs.Comparison for .NET 19.5, we fixed this issue. Please have a glance. But this is not it we have a lot more to tell you. Along with bug fixes, some features and improvements are also introduced. Lets talk about new features first. Did you ever think of getting coordinates of document changes or differences?...specify CalculateComponentCo property in ComparisonSettings . Let’s...class contains following properties: NumberOfPages (read only)...

    blog.groupdocs.com/comparison/footnote-comparis...
  6. How to Convert ODT to PDF in Java

    This short tutorial focuses on the process to convert ODT to PDF in Java. Learn how to create code to export ODT to PDF using Java and customize the converted file....PdfConvertOptions class and define properties for customizing the converted...converted PDF document by using properties such as converted page index...

    kb.groupdocs.com/conversion/java/how-to-convert...
  7. Remove Metadata from XLSX using Java

    Quickly learn how to remove metadata from XLSX using Java. Additionally, you'll receive code illustrating the process of how to clean metadata from XLSX in Java....created, and other document properties. This information needs to...modification dates, document properties like titles and keywords...

    kb.groupdocs.com/redaction/java/remove-metadata...
  8. Read Metadata from DOCX using C#

    Unlock the method to read metadata from DOCX using C#. Elevate document organization efficiency by mastering the art of how to read metadata of DOCX using C#....inspect all retrieved metadata properties Provide a predicate to the...Iterate through the retrieved properties Whether it’s automating document...

    kb.groupdocs.com/metadata/net/read-metadata-fro...
  9. Remove Metadata from PPT using C#

    In this topic, you will learn how to remove metadata from PPT using C#. The code will be provided to delete metadata from PPT in C# without installing extra software....constructor Eliminate the metadata properties by calling the Metadata.RemoveProperties...simple code to clear metadata properties in PPT using C# . Code to...

    kb.groupdocs.com/metadata/net/remove-metadata-f...
  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-...