Sort Score
Result 10 results
Languages All
Labels All
Results 171 - 180 of 2,357 for

properties

(0.11 sec)
  1. How to Add Checkbox Component in PDF using C#

    In this article, You will learn how to add checkbox component in PDF using C#. Furthermore, we will help you to develop application to insert checkbox in PDF using C#....CheckboxComponent object and set some properties Call Add method of Annotator...CheckboxComponent objects, set properties for checkbox and save the...

    kb.groupdocs.com/annotation/net/how-to-add-chec...
  2. 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...
  3. Working with XMP metadata | GroupDocs

    This article shows how to access XMP metadata in a file of any supported format....model and basic metadata properties intended to form a unified...store any set of metadata properties. These can be simple name/value...

    docs.groupdocs.com/metadata/nodejs-java/working...
  4. Evaluation Limitations and Licensing | GroupDocs

    GroupDocs.Metadata for Python provides different plans for purchase or offers a Free Trial and a 30-day Temporary License for evaluation....API Limitations Document properties (Pdf, Word, Excel, PowerPoint...Visio, etc) Only first 5 properties can be read XMP API Only...

    docs.groupdocs.com/metadata/python-net/evaluati...
  5. Handle EXIF Data of JPEG, PNG, TIFF & WebP Imag...

    Manipulate EXIF metadata of images in Java. Extract, update, add or remove EXIF data of JPG/JPEG, PNG, WebP, or other images programmatically using Java API....tags from images Update EXIF properties Remove EXIF metadata Java...You can read the EXIF data properties by following simple steps...

    blog.groupdocs.com/metadata/handle-exif-data-of...
  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. Evaluation Limitations and Licensing | GroupDocs

    free metadata api version is available to evaluate the API which will be similar as licensed but with few limitations....API Limitations Document properties (Pdf, Word, Excel, PowerPoint...Visio, etc) Only first 5 properties can be read XMP API Only...

    docs.groupdocs.com/metadata/net/evaluation-limi...
  9. Working with EXIF metadata | GroupDocs

    This article explains how to access EXIF metadata in a file of any supported format....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/net/working-with-ex...
  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-...