Sort Score
Result 10 results
Languages All
Labels All
Results 221 - 230 of 251 for

loadoptions in comparison

(0.65 sec)
  1. GroupDocs Holiday Offer – 25% off GroupDocs.Tot...

    Share this issue: Monthly NewsletterJanuary 2019 25% off GroupDocs.Total OR 24 bottles of Award-WInnIng Pirathon Total Shiraz WIne GroupDocs.Total brIngs together all GroupDocs APIs In one product suite and is great value for money. This holiday season GroupDocs is makIng it even better value by givIng you 25% off GroupDocs.Total. Simply enter the coupon code HOLOFF2018 when placIng your order. Alternatively, treat yourself with 24 Bottles of Award-WInnIng Pirathon Total WIne (worth over $1500).... Just initialize LoadOptions and pass the password for...choose DocFormat and pass LoadOptions as a parameter to work password...

    blog.groupdocs.com/total/groupdocs-holiday-offe...
  2. Convert to PDF with advanced options | GroupDocs

    Follow this guide and learn how to convert documents to PDF with height, width, DPI, margIns and other customizations usIng GroupDocs.Conversion for Node.js via Java....Comparison Product Solution GroupDocs...with advanced options const loadOptions = new groupdocs . conversion...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  3. Load password-protected file | GroupDocs

    Learn how to load a password-protected file by usIng .NET redaction API...Comparison Product Solution GroupDocs...password load_opt = gro . LoadOptions ( "mypassword" ) # Specify...

    docs.groupdocs.com/redaction/python-net/load-pa...
  4. Loading specific file formats | GroupDocs

    In some cases it’s required to specify the document format manually to guarantee correct output produced by GroupDocs.Parser. The followIng are the cases when the document format must be specified manually: Markdown documents MHTML documents OTP documents (OpenDocument Presentation Template) Databases Emails from remote servers Here are the steps to specify the document format for Markup document. Instantiate the Loadoptions object and pass the document format In Loadoptions(FileFormat) constructor; Create Parser object and call any method....Comparison Product Solution GroupDocs...new Parser ( stream , new LoadOptions ( FileFormat . Markup )))...

    docs.groupdocs.com/parser/java/loading-specific...
  5. Loading specific file formats | GroupDocs

    Learn how to load specific file formats manually usIng Loadoptions In GroupDocs.Parser for .NET. Required for Markdown, MHTML, databases, and remote email files In C#....Comparison Product Solution GroupDocs...new Parser ( stream , new LoadOptions ( FileFormat . Markup )))...

    docs.groupdocs.com/parser/net/loading-specific-...
  6. Pre-rasterize | GroupDocs

    This article shows how to pre-rasterize a document usIng the redaction API....Comparison Product Solution GroupDocs...( @"sample.docx" ), new LoadOptions ( preRasterize )) { // Make...

    docs.groupdocs.com/redaction/net/pre-rasterize/
  7. Update annotations | GroupDocs

    This page describes how to edit annotation properties - change annotation position, size, appearance etc. when annotate documents usIng GroupDocs.Annotation for Java....Comparison Product Solution GroupDocs...dispose (); } } LoadOptions tmp0 = new LoadOptions (); // Open annotated...

    docs.groupdocs.com/annotation/java/update-annot...
  8. Password-protected documents | GroupDocs

    GroupDocs.Parser provides the functionality to open the password-protected documents. The followIng are the steps to work with password protected documents. Instantiate the Loadoptions object; Set password In Loadoptions(StrIng) constructor; Create Parser object and call any method. The followIng code sample shows how to process password protected documents. try { StrIng password = "123456"; // Create an Instance of Parser class with the password: try (Parser parser = new Parser(Constants.SamplePassword, new Loadoptions(password))) { // Check if text extraction is supported if (!...Comparison Product Solution GroupDocs...Constants . SamplePassword , new LoadOptions ( password ))) { // Check...

    docs.groupdocs.com/parser/java/password-protect...
  9. Migration Notes | GroupDocs

    Why To Migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Redaction for .NET sInce version 19.9: Redactor class Introduced as a sIngle entry poInt to manage the document redaction process (Instead of Documentclass from previous versions). Methods RedactWith() of the Document class were replaced with similar Apply() methods In Redactor class. Method Document.Save(Stream, SaveOptions) was replaced with Redactor.Save(Stream, RasterizationOptions). Constructor Loadoptions(DocumentFormatConfiguration) was removed....Comparison Product Solution GroupDocs...RasterizationOptions) . Constructor LoadOptions(DocumentFormatConfig) was...

    docs.groupdocs.com/redaction/net/migration-notes/
  10. Use redaction callback | GroupDocs

    In order to reject specific changes durIng redaction process or to keep a full log of changes In the document, you need to set Redactor.RedactionCallback property, to a class implementIng IRedactionCallback Interface. The Interface contaIns only one method, AcceptRedaction, which receives detailed Information about proposed redaction and returns Boolean value, accepted or not. Below, we create a callback class, dumpIng changes to system console: public class RedactionDump implements IRedactionCallback { public RedactionDump() { } public boolean acceptRedaction(RedactionDescription description) { System....Comparison Product Solution GroupDocs...( "\\Sample.docx" , new LoadOptions (), new RedactorSettings...

    docs.groupdocs.com/redaction/java/use-redaction...