Sort Score
Result 10 results
Languages All
Labels All
Results 1,611 - 1,620 of 29,829 for

groupdocs.signature

(0.08 sec)
  1. Showcases | Documentation

    Code examples and live demostrations of GroupDocs.Merger for .NET...Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/merger/net/showcases/
  2. In-Table List in Email Document | Documentation

    Note In this article, we will use GroupDocs.Assembly to generate a In-Table List report in Email Document format. In-Table List in Email Document Reporting Requirement As a report developer, you are required to represent the information of the managers with the following key requirements: Report must be in .eml or .msg format. It must add email recipient, css and subject of the email. Report must show managers’ name. It must show the sum of contract prices against each manager....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/assembly/java/in-table-list-...
  3. In-Paragraph List in Text Document | Documentation

    Note In this article, we will use GroupDocs.Assembly to generate a In-Paragraph List report in Text Document format. In-Paragraph List in Text Document Note This feature is supported by version 17.03 or greater Reporting Requirement As a report developer, you are required to describe about the services you are providing with the following key requirements: A descriptive or informative line like “We provide support for the following products:”. Show all the products along with the above sentence....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/assembly/net/in-paragraph-li...
  4. Add document to Spreadsheet via OLE | Documenta...

    This article explains how to add document to Spreadsheet via OLE with GroupDocs.Merger within your .NET applications....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/merger/net/add-document-to-s...
  5. Add search text annotation | Documentation

    The page describes how to add search text annotation to a document using GroupDocs.Annotation for .NET."...Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/annotation/net/add-search-te...
  6. Load document from stream | Documentation

    There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/parser/java/load-document-fr...
  7. Add text watermarks | Documentation

    Add text watermarks to rendered documents using GroupDocs.Viewer in your Python applications....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/viewer/python-net/add-text-w...
  8. Load from local disc | Documentation

    Load from local disc GroupDocs.Redaction.Redactor class is a main class in Redaction API, providing functionality to open a document. When document is located on the local disk, you can pass its path to *Redactor *class constructor. The following example demonstrates how to open a document from local disc: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/load-from-loc...
  9. Load from Stream | Documentation

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/load-from-str...
  10. List and print all supported file types | Docum...

    This article explains how to list and print file types supported by GroupDocs.Viewer for Java...Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/how-to-list-and-...