Sort Score
Result 10 results
Languages All
Labels All
Results 491 - 500 of 4,541 for

groupdocs.total,

(0.1 sec)
  1. GroupDocs.Redaction Product Family

    查找有关在任何平台上使用代码以不同文件格式编辑私有内容的答案。...查找有关在任何平台上使用代码以不同文件格式编辑私有内容的答案。

    kb.groupdocs.com/zh/redaction/
  2. Get document information | Documentation

    This article explains how to detect document file type and calculate pages count when merge PDF, Word(DOC, DOCX), Excel(XLS, XLSX), PowerPoint(PPT, PPTX) files with GroupDocs.Merger....This article explains how to detect document file type and calculate pages count when merge PDF, Word(DOC, DOCX), Excel(XLS, XLSX), PowerPoint(PPT, PPTX) files with GroupDocs.Merger.

    docs.groupdocs.com/merger/net/get-document-info...
  3. Get supported file formats | Documentation

    This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your .NET applications....This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your .NET applications.

    docs.groupdocs.com/comparison/net/get-supported...
  4. Save overwriting original file | Documentation

    The following example demonstrates how to save the redacted document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.save(options); } } finally { redactor....The following example demonstrates how to save the redacted document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.save(options); } } finally { redactor.

    docs.groupdocs.com/redaction/java/save-overwrit...
  5. Save in rasterized PDF | Documentation

    The following example demonstrates how to save the document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...The following example demonstrates how to save the document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }

    docs.groupdocs.com/redaction/java/save-in-raste...
  6. Common conversion options | Documentation

    This documentation sections describe how to customize document conversion process - convert specific document pages, apply watermarks etc. when using GroupDocs.Conversion for Node.js via Java....This documentation sections describe how to customize document conversion process - convert specific document pages, apply watermarks etc. when using GroupDocs.Conversion for Node.js via Java.

    docs.groupdocs.com/conversion/nodejs-java/commo...
  7. GroupDocs.Conversion Product Family

    Find answers about converting documents and images of various types using code on any platform....Find answers about converting documents and images of various types using code on any platform.

    kb.groupdocs.com/conversion/page/6/
  8. Categories

    Find Answers by API GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product F......Find Answers by API GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product F...

    kb.groupdocs.com/categories/page/15/
  9. GroupDocs.Search Product Family

    Գտեք պատասխաններ տեքստի որոնման և տարբեր ֆայլերի ինդեքսավորման վերաբերյալ՝ օգտագործելով կոդի ցանկացած հարթակ:...Գտեք պատասխաններ տեքստի որոնման և տարբեր ֆայլերի ինդեքսավորման վերաբերյալ՝ օգտագործելով կոդի ցանկացած հարթակ:

    kb.groupdocs.com/hy/search/
  10. Advanced usage | Documentation

    This section explains how to apply additional options to customize output document when signing documents with GroupDocs.Signature for Java...This section explains how to apply additional options to customize output document when signing documents with GroupDocs.Signature for Java

    docs.groupdocs.com/signature/java/advanced-usage/