Sort Score
Result 10 results
Languages All
Labels All
Results 4,181 - 4,190 of 8,106 for

document signature api

(0.35 sec)
  1. Update index | GroupDocs

    This article explains that how to update indexed Documents, as well as updating an index version....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/search/net/update-index/
  2. Get default ConvertOptions for specific target ...

    Learn this article and check how to obtain default convert options for specific conversion format with GroupDocs.Conversion for Java Api. ...Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/conversion/java/get-default-...
  3. Merge XLSX files using C#

    Discover the process of how to merge XLSX files using C#. Enhance Document management efficiency by learning how to combine XLSX files in C# programming language....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Signature Product Family GroupDocs.Metadata...

    kb.groupdocs.com/merger/net/merge-xlsx-files-us...
  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:...Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/assembly/java/working-with-c...
  5. Work with Word Track Changes | GroupDocs

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

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

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

    docs.groupdocs.com/metadata/java/getting-known-...
  8. Convert XML to PDF Using XSL-FO | GroupDocs

    Learn how to convert a XML Document to PDF using XSL-FO with GroupDocs.Conversion for .NET....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/conversion/net/convert-xml-t...
  9. How to merge source code files | GroupDocs

    Learn how to accept or reject detected changes and apply them to the result using GroupDocs.Comparison for Python via .NET....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/comparison/python-net/how-to...
  10. Working with Metadata in ASF Files | GroupDocs

    Working with metadata in ASF files Reading ASF format-specific properties The GroupDocs.Metadata Api supports extracting format-specific information from ASF files. The following are the steps to read native ASF metadata. Load an ASF video Get the root metadata package Extract the native metadata package using AsfRootPackage.AsfPackage Read the ASF metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Asf.AsfReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputAsf)) { var root = metadata.GetRootPackage(); var package = root.AsfPackage; // Display basic properties Console....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/net/working-with-me...