Sort Score
Result 10 results
Languages All
Labels All
Results 3,861 - 3,870 of 8,140 for

document signature api

(0.42 sec)
  1. Specify OOXML Compliance Level for Word Documen...

    Control the OOXML compliance level (Ecma, Transitional, or Strict) when saving Word Documents to OOXML formats using GroupDocs.Assembly for Java....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/assembly/java/developer-guid...
  2. Merge EPUB files using C#

    This guide will deliver important directions to merge EPUB files using C# and will include a code snippet demonstrating how to combine EPUB files in C# effectively....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Signature Product Family GroupDocs.Metadata...

    kb.groupdocs.com/merger/net/merge-epub-files-us...
  3. Merge HTML files using C#

    This guide will provide key instructions to merge HTML files using C# and will include a code snippet demonstrating how to combine HTML files in C# effectively....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Signature Product Family GroupDocs.Metadata...

    kb.groupdocs.com/merger/net/merge-html-files-us...
  4. Render Lotus Notes database files as HTML, PDF,...

    This topic describes how to use the GroupDocs.Viewer .NET Api (C#) to convert Lotus Notes database files (NSF) to HTML, PDF, PNG, and JPEG formats....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/viewer/net/render-lotus-note...
  5. Sign documents with QR code in CSharp on GroupD...

    Sign Documents with QR code in CSharp on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Sign Documents with QR code in CSharp on GroupDocs Blog | Docume......Sign documents with QR code in CSharp on GroupDocs Blog | Document...Developers Recent content in Sign documents with QR code in CSharp on...

    blog.groupdocs.com/fr/tag/sign-documents-with-q...
  6. Working with CAD metadata | GroupDocs

    The GroupDocs Metadata Api provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata Api provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/java/working-with-c...
  7. Perform Search by Chunks using Java

    Learn how to perform search by chunks using Java for efficient querying. Explore Java chunked search in large indexes to optimize performance and scalability....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Signature Product Family GroupDocs.Metadata...

    kb.groupdocs.com/search/java/perform-search-by-...
  8. Convert XLSX to RTF using Python

    Learn how to convert XLSX to RTF using Python in this topic. Discover how to export XLSX to RTF in Python easily, without the need to install any extra software....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Signature Product Family GroupDocs.Metadata...

    kb.groupdocs.com/conversion/python/convert-xlsx...
  9. 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...Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/editor/java/generating-works...
  10. Working with BMP metadata | GroupDocs

    Reading BMP header properties The GroupDocs.Metadata Api supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

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