Sort Score
Result 10 results
Languages All
Labels All
Results 2,071 - 2,080 of 3,414 for

document security

(0.06 sec)
  1. Supported File Formats | Documentation

    The following article indicates the file formats that GroupDocs.Comparison can work with....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Comparison Product Family...

    docs.groupdocs.com/comparison/net/supported-doc...
  2. Processes cancellation | Documentation

    This article explains how to control signature processing (cancellation) for large Documents with GroupDocs.Signature API....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Signature Product Family...

    docs.groupdocs.com/signature/net/processes-canc...
  3. Updating documents | Documentation

     This section contains examples on electronic signatures updates using extended options with GroupDocs.Signature API....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Signature Product Family...

    docs.groupdocs.com/signature/net/updating/
  4. Processes cancellation | Documentation

    This article explains how to control signature processing (cancellation) for large Documents with GroupDocs.Signature API....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Signature Product Family...

    docs.groupdocs.com/signature/java/processes-can...
  5. 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....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

    docs.groupdocs.com/metadata/java/getting-known-...
  6. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Working with GroupDocs.Assembly Engine | Docume...

    About this section The articles in this section will be talking about technical concepts to be considered when creating Document templates in order to generate your required reports. After going through this section, hopefully you will understand the template syntax, composing expressions and other syntax elements. Additionally, we’ll also discuss how GroupDocs.Assembly engine reads the syntax, evaluates the expressions to populate with assigned data and then generates your desired report according to your business needs....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Assembly Product Family...

    docs.groupdocs.com/assembly/java/working-with-g...
  8. Update signatures in documents | Documentation

    This section shows how to update electronic signatures in the Documents....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Signature Product Family...

    docs.groupdocs.com/signature/java/update-signat...
  9. Working with GroupDocs.Assembly Engine | Docume...

    About this section The articles in this section will be talking about technical concepts to be considered when creating Document templates in order to generate your required reports. After going through this section, hopefully you will understand the template syntax, composing expressions and other C# syntax supported programming elements. Additionally, we’ll also discuss how GroupDocs.Assembly engine reads the syntax, evaluates the expressions to populate with assigned data and then generates your desired report according to your business needs....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Assembly Product Family...

    docs.groupdocs.com/assembly/net/working-with-gr...
  10. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the getGifImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with XMP Metadata GroupDocs....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

    docs.groupdocs.com/metadata/java/working-with-m...