Sort Score
Result 10 results
Languages All
Labels All
Results 4,421 - 4,430 of 7,901 for

document conversion api

(0.13 sec)
  1. Implement custom encryption with Metadata signa...

    This article explains how to implement custom encryption for Metadata electronic signatures....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/signature/java/implement-cus...
  2. Introducing Web Report Generator | GroupDocs

    Introduction to Web Report Generator Powered by GroupDocs.Assembly for .NET Web Report Generator is an ASP.NET Web forms application using GroupDocs.Assembly for .NET that demonstrates the core functionalities provided by GroupDocs.Assembly for .NET. The Web Report Generator allows user to easily create reports based on: a) Predefined custom templates (created in Supported Document Formats following Supported Template Syntax) and b) Your own database (MS SQL Server local OR Remote) tables, views and also with custom query....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/assembly/net/introducing-web...
  3. 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....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/assembly/net/working-with-gr...
  4. Working with CSV Data Sources | GroupDocs

    Note This feature is only compatible with GroupDocs.Assembly for .NET 19.10 or later releases. To access CSV data while building a report, you can pass a CsvDataSource instance to the assembler as a data source. Using of CsvDataSource enables you to work with typed values rather than just strings in template Documents. Although CSV as a format does not define a way to store values of types other than strings, CsvDataSource is capable to recognize values of the following types by their string representations:...Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/assembly/java/working-with-c...
  5. Redact Text in XLSX using Java

    In this tutorial, you will learn how to redact text in XLSX using Java. Additionally, you will get a simple code example to replace text in XLSX using Java....Find Answers by API GroupDocs.Total Product Family GroupDocs...GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family...

    kb.groupdocs.com/redaction/java/redact-text-in-...
  6. Work with Word Track Changes | GroupDocs

    Learn how to compare Word Documents while respecting Track Changes using GroupDocs.Comparison for Python via .NET....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/comparison/python-net/word-t...
  7. 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....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. 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....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/java/getting-known-...
  9. 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 JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iConversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  10. Extracting metadata | GroupDocs

    Using the GroupDocs.Metadata search engine you can extract desired metadata properties from files of different types. You don’t need to worry about the exact file format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported files in various metadata packages. All tags defined in GroupDocs....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/python-net/extracti...