Sort Score
Result 10 results
Languages All
Labels All
Results 1,931 - 1,940 of 4,434 for

as

(0.03 sec)
  1. Optimize a PDF file for a browser | Documentation

    This topic describes how to optimize PDF file using the GroupDocs.Viewer .NET API (C#) for web browser or to reduce size....This topic describes how to optimize PDF file using the GroupDocs.Viewer .NET API (C#) for web browser or to reduce size.

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  2. Save with default options | Documentation

    The simplest way to save the document is it provide no parameters to Save method. In this cAse the document will be rAsterized to PDF and will have the same name As the original one except its extension (.PDF). The PDF file will be overwritten. The following example demonstrates usage of Save() method with default options. final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor....The simplest way to save the document is it provide no parameters to Save method. In this case the document will be rasterized to PDF and will have the same name as the original one except its extension (.PDF). The PDF file will be overwritten. The following example demonstrates usage of Save() method with default options. final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.

    docs.groupdocs.com/redaction/java/save-with-def...
  3. Sent date not preserved whern converting eml to...

    Hello When I convert an eml file to a msg file, sent date is not preserved. I tried to force PreserveOriginalDate to True, even if default value is true but result is the same. If I convert the generated msg file to pd…...Hello When I convert an eml file to a msg file, sent date is not preserved. I tried to force PreserveOriginalDate to True, even if default value is true but result is the same. If I convert the generated msg file to pd…

    forum.groupdocs.com/t/sent-date-not-preserved-w...
  4. Summary Page & DICOM Format for Images - introd...

    We are glad to announce another monthly releAse of GroupDocs.Comparison for .NET 17.3.0 API with Three new features like support of “Compare DICOM format by Comparison.Imaging” and “Apply/Discard changes for DICOM format”, also providing support for “summary page for images”. This monthly releAse is adding Four improvements like “comparison of result and original files in Images” and “process absorbing of tables with merged cells” along with fixes. Detailed information is listed below....We are glad to announce another monthly release of GroupDocs.Comparison for .NET 17.3.0 API with Three new features like support of “Compare DICOM format by Comparison.Imaging” and “Apply/Discard changes for DICOM format”, also providing support for “summary page for images”. This monthly release is adding Four improvements like “comparison of result and original files in Images” and “process absorbing of tables with merged cells” along with fixes. Detailed information is listed below.

    blog.groupdocs.com/comparison/summary-page-dico...
  5. Releasing Next Generation GroupDocs.Signature f...

    Today, team GroupDocs is pleAsed to announce the releAse of GroupDocs.Signature for .NET with a lot of signing features worth experiencing. This Signing API allows developers to write applications with ability to significantly sign electronic docs of various file formats. Note that API permits the user to add different types of signatures on electronic documents. Why Next Generation GroupDocs.Signature?The legacy version of API wAs UI dependent. The quite captivating fact about this e-signing API is, it’s UI less and independent calls can be made....Today, team GroupDocs is pleased to announce the release of GroupDocs.Signature for .NET with a lot of signing features worth experiencing. This Signing API allows developers to write applications with ability to significantly sign electronic docs of various file formats. Note that API permits the user to add different types of signatures on electronic documents. Why Next Generation GroupDocs.Signature?The legacy version of API was UI dependent. The quite captivating fact about this e-signing API is, it’s UI less and independent calls can be made.

    blog.groupdocs.com/signature/releasing-simplest...
  6. Releasing SharePoint Web-Part for GroupDocs.Ann...

    Great news for SharePoint developers, now they can add GroupDocs.Annotation for .NET 3.x. As custom Web-Part. Team GroupDocs is glad to announce the addition of GroupDocs.Annotation Web- Part Front End for SharePoint developers. Using this releAse SharePoint developers can not only explore and investigate GroupDocs.Annotation for .NET Front End but can also customize this Web-Part according to their needs. This project is already published on GitHub. SharePoint Web-Part Front End FeaturesThe SharePoint Web-Part Front End provides end users with tools needed for convenient annotating, viewing and navigation of a documents in a browser....Great news for SharePoint developers, now they can add GroupDocs.Annotation for .NET 3.x. as custom Web-Part. Team GroupDocs is glad to announce the addition of GroupDocs.Annotation Web- Part Front End for SharePoint developers. Using this release SharePoint developers can not only explore and investigate GroupDocs.Annotation for .NET Front End but can also customize this Web-Part according to their needs. This project is already published on GitHub. SharePoint Web-Part Front End FeaturesThe SharePoint Web-Part Front End provides end users with tools needed for convenient annotating, viewing and navigation of a documents in a browser.

    blog.groupdocs.com/annotation/releasing-sharepo...
  7. GroupDocs.Conversion Product Family on GroupDoc...

    GroupDocs.Conversion Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Conversion Product Family on GroupDocs Blog | Document A......GroupDocs.Conversion Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Conversion Product Family on GroupDocs Blog | Document A...

    blog.groupdocs.com/categories/groupdocs.convers...
  8. GroupDocs.Redaction for Python via .NET | Docum...

    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#...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#

    docs.groupdocs.com/redaction/python-net/
  9. Working with List Reports - Bulleted | Document...

    The Bulleted List As per wikipedia, a Bulleted List can be described As: In typography, a bullet ( • ) is a typographical symbol or glyph used to introduce items in a list. For example: Item 1 Item 2 Item 3 For more information, pleAse visit wikipedia article. Articles in this section...The Bulleted List As per wikipedia, a Bulleted List can be described as: In typography, a bullet ( • ) is a typographical symbol or glyph used to introduce items in a list. For example: Item 1 Item 2 Item 3 For more information, please visit wikipedia article. Articles in this section

    docs.groupdocs.com/assembly/java/working-with-l...
  10. Save in original format | Documentation

    The following example demonstrates how to save file in its original format with current date As a suffix: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhrAseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRAsterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date As DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }...The following example demonstrates how to save file in its original format with current date as a suffix: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }

    docs.groupdocs.com/redaction/java/save-in-origi...