Sort Score
Result 10 results
Languages All
Labels All
Results 2,531 - 2,540 of 4,087 for

document security

(0.06 sec)
  1. Working with text | GroupDocs

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Parser Product Family /...

    docs.groupdocs.com/parser/java/working-with-text/
  2. Generating worksheets (tabs) preview for spread...

    This article describes how to generate a preview for any worksheet (tab) for the existing Excel spreadsheet in SVG format...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Editor Product Family /...

    docs.groupdocs.com/editor/java/generating-works...
  3. How to merge images to PDF using Java | GroupDocs

    Learn how to merge images to PDF file, combine images into one PDF file programmatically in Java language using GroupDocs.Merger for Java library....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Merger Product Family /...

    docs.groupdocs.com/merger/java/getting-started/...
  4. Extract attachments from Emails | GroupDocs

    Extract email attachments using GroupDocs.Parser for .NET...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Parser Product Family /...

    docs.groupdocs.com/parser/net/extract-attachmen...
  5. Working with GroupDocs.Assembly Engine | GroupDocs

    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...
  6. How to Run Examples | GroupDocs

    We offer multiple solutions on how you can run GroupDocs.Editor examples, by building your own or using our back-end or front-end examples out-of-the-box....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Editor Product Family /...

    docs.groupdocs.com/editor/net/how-to-run-examples/
  7. Work with Word Track Changes | GroupDocs

    Learn how to compare Word Documents while respecting Track Changes using GroupDocs.Comparison for Python via .NET....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Comparison Product Family...

    docs.groupdocs.com/comparison/python-net/word-t...
  8. Minify HTML | GroupDocs

    Learn how to minify HTML and CSS when rendering of Documents into HTML and make your HTML Documents load faster with GroupDocs.Viewer....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Viewer Product Family /...

    docs.groupdocs.com/viewer/net/minify-html/
  9. Working with metadata in GIF images | GroupDocs

    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...
  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....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

    docs.groupdocs.com/metadata/java/getting-known-...