Sort Score
Result 10 results
Languages All
Labels All
Results 2,491 - 2,500 of 7,635 for

page

(0.06 sec)
  1. Use advanced logging | GroupDocs

    You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods: import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors.... close (); } Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/redaction/java/use-advanced-...
  2. Render attachments | GroupDocs

    Render email attachments with GroupDocs.Viewer for Java in the same way as you would render any other documents...view ( options ); } } Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/viewer/java/how-to-convert-a...
  3. Compare multiple documents | GroupDocs

    Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for .NET....docx" )); } Was this page helpful? Not really Yes, thanks...tell us how we can improve this page. Skip Send Thank you for your...

    docs.groupdocs.com/comparison/net/compare-multi...
  4. Sign Documents with PKCS#11 in .NET | GroupDocs

    Learn how to sign PDF and other documents in .NET using PKCS#11 hardware tokens, USB dongles, or smart cards with GroupDocs.Signature. A free electronic signature API version is available for evaluation with limited features....NET Leave feedback On this page Note 💡For the complete working...GroupDocs.Signature Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/signature/net/signing-pdf-wi...
  5. Password-protected documents | GroupDocs

    Learn how to open and process password-protected PDF and Office documents. Includes error handling examples and supported encryption types....documents Leave feedback On this page GroupDocs.Parser provides the...with our free online . Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/parser/net/password-protecte...
  6. Installation | GroupDocs

    GroupDocs hosts all Java APIs on GroupDocs Repository. You can easily use GroupDocs.Redaction for Java API directly in your Maven projects with simple configurations. Specify GroupDocs Repository Configuration First, you need to specify repository configuration/location in your project as follows: Maven GroupDocs Artifact Repository GroupDocs Artifact Repository https://releases.groupdocs.com/java/repo/ Gradle repositories { maven { url "https://repository.groupdocs.com/repo/" } } Kotlin repositories { maven(url = "https://repository.groupdocs.com/repo/") } Ivy docs.groupdocs.com/redaction/java/installation/

  7. Logging and Diagnostics | GroupDocs

    Enable and configure logging for document conversions with GroupDocs.Conversion for Python via .NET....Diagnostics Leave feedback On this page To enable logging, use either...written to the text file. Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/conversion/python-net/develo...
  8. Extract Tables from Microsoft Office Word Docum...

    Learn how to easily extract table content from Word documents (.doc, .docx) using GroupDocs.Parser for .NET....Documents Leave feedback On this page This guide explains how to extract...with our free online . Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/parser/net/extract-tables-fr...
  9. GroupDocs.Conversion for Java 16.10.1 Implement...

    Team GroupDocs is keen to announce another release of GroupDocs.Conversion for Java 16.10.1. Numerous customers reported bugs are resolved in this release. Moreover, API encompasses multitude of new features. Support of converting documents to and from PSD format is introduced. Using latest version of the API developers can implement multi-thread conversion as well. We would recommend you to download and experience GroupDocs.Conversion for Java 16.10.1 and share your feedback....converting to PDF return each page in separate stream When converting...converting to HTML return each page in separate stream Place watermark...

    blog.groupdocs.com/conversion/groupdocs.convers...
  10. 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....backgrounds Leave feedback On this page Extracting information about...watermarker . close (); Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/watermark/java/working-with-...