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

properties

(0.04 sec)
  1. How to Convert RTF to PDF using C#

    Convert documents using an easy-to-use library and learn how to convert RTF to PDF using C#. Look over the sample code for C# RTF to PDF functionality....tutorial, we’ve defined a few properties for the converted PDF document...this example. By setting properties for the output PDF document...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  2. Introducing Outlook Metadata Cleaner - An Outlo...

    Outlook Metadata Cleaner is an Outlook add-in powered by GroupDocs.Metadata for .NET that removes/cleans metadata Properties in the files selected to be attached with email. It is an attach file button that appears in New Message window in Outlook. When some file is selected to be attached with email, the add-in first cleans all the metadata information saved with that file and then attaches metadata free file with email message....that removes/cleans metadata properties in the files selected to...built-in document properties Cleans custom properties in documents...

    blog.groupdocs.com/metadata/introducing-outlook...
  3. Locales for output document | Documentation

    This guide demonstrates how to edit RTL documents and specify locale for Word documents when using GroupDocs.Editor for Java API....class contains 3 very similar properties of the same type java.util...these three locale-related properties are not specified, their...

    docs.groupdocs.com/editor/java/locales-for-outp...
  4. Remove Metadata from DOCM using C#

    This topic will teach you how to remove metadata from DOCM using C#. You'll also get the code to delete metadata from DOCM in C# without needing any extra software....This information can include properties such as author details, creation...obstacles to clear metadata properties in DOCM using C# . Code to...

    kb.groupdocs.com/metadata/net/remove-metadata-f...
  5. 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/product-overview/
  6. 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...
  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. 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...
  9. How to Add Watermark Annotation to PDF using C#

    Review the step-by-step guide to add watermark annotation to PDF using C# by annotation library and how to use these instructions to insert watermark to PDF in C#....WatermarkAnnotation class and set properties for the watermark annotation...capability. We have set different properties of WatermarkAnnotation to...

    kb.groupdocs.com/annotation/net/how-to-add-wate...
  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-...