Sort Score
Result 10 results
Languages All
Labels All
Results 2,031 - 2,040 of 4,695 for

document editor

(0.06 sec)
  1. Save a modified file to a specified location | ...

    This article shows how to save a Document to a specified location on a local disk in Java...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/save-a-modifie...
  2. Output adapters | GroupDocs

    This article gives the knowledge about output adapters which are used to output generated HTML or plain text to various output objects....Editor Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/nodejs-java/output-ad...
  3. Output adapters | GroupDocs

    This article gives the knowledge about output adapters which are used to output generated HTML or plain text to various output objects....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/output-adapters/
  4. Load text from string | GroupDocs

    This article explains how to load values from variables of string type when using GroupDocs.Comparison for Node.js via Java....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/nodejs-java/load-...
  5. Render XML documents as HTML, PDF, PNG, and JPE...

    This topic describes how to use the GroupDocs.Viewer Java API to convert XML Documents to HTML (with and without pagination), PDF Documents, PNG, and JPEG raster formats....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/render-xml-docum...
  6. GroupDocs.Redaction for .NET | GroupDocs

    A .NET API for redaction of sensitive and classified information from the Documents. You can redact in adobe pdf, redact in excel or in many of different file formats using c#...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/net/
  7. Extract Metadata from PDF Documents in C# .NET ...

    Learn how to extract metadata from PDF files in C# using GroupDocs.Parser for .NET. Get Document properties such as title, author, subject, creation date, and more....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/extract-metadata-...
  8. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers...brand the presentation or document. Guys! We have recently released...use stamps as part of their documents to mark them as approved or...

    blog.groupdocs.com/groupdocs.blog/page/43/
  9. Working with slide backgrounds | GroupDocs

    Extracting information about all slide backgrounds The API allows you to extract information about all the slide backgrounds in a PowerPoint Document as shown in the following code sample using method getBackgroundImage() of PresentationSlide.getImageFillFormat(). advanced_usage.add_watermarks_to_presentations.PresentationGetSlideBackgroundsInformation PresentationLoadOptions loadOptions = new PresentationLoadOptions(); // Specify an absolute or relative path to your Document. Ex: "C:\\Docs\\presentation.pptx" Watermarker watermarker = new Watermarker("presentation.pptx", loadOptions); PresentationContent content = watermarker.getContent(PresentationContent.class); for (PresentationSlide slide : content.getSlides()) { if (slide....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/java/working-with-...
  10. Load from Stream | GroupDocs

    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(); }...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/load-from-str...