Sort Score
Result 10 results
Languages All
Labels All
Results 391 - 400 of 10,041 for

new

(0.08 sec)
  1. Add text watermarks | Documentation

    This article shows how to add a text watermark and save the resultant document. It is capable of adding watermarks to images or documents....Consulting Blog Knowledge Base New Releases Status Websites aspose...method to store the document in a new location. using GroupDocs.Watermark...

    docs.groupdocs.com/watermark/net/basic-usage/ad...
  2. Render PowerPoint presentations as HTML, PDF, a...

    This topic describes how to use the GroupDocs.Viewer .NET API (C#) to convert PowerPoint presentations to HTML, PDF, PNG, and JPEG formats....Consulting Blog Knowledge Base New Releases Status Websites aspose...// ... using ( var viewer = new Viewer ( "sample.pptx" )) { //...

    docs.groupdocs.com/viewer/net/render-presentati...
  3. Inserting edited slide into existing presentati...

    This article describes how to insert edited presentation slide into existing PowerPoint presentation....Consulting Blog Knowledge Base New Releases Status Websites aspose...the method. method generates a new presentation, which contains...

    docs.groupdocs.com/editor/java/inserting-edited...
  4. 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(); }...Consulting Blog Knowledge Base New Releases Status Websites aspose...suffix: final Redactor redactor = new Redactor ( "sample.docx" ); try...

    docs.groupdocs.com/redaction/java/save-in-origi...
  5. Render Visio documents as HTML, PDF, and image ...

    This topic describes how to use the GroupDocs.Viewer .NET API (C#) to convert Visio diagrams to HTML, PDF, PNG, and JPEG formats....Consulting Blog Knowledge Base New Releases Status Websites aspose...// ... using ( var viewer = new Viewer ( "flowchart.vsdx" ))...

    docs.groupdocs.com/viewer/net/render-visio-docu...
  6. Save overwriting original file | Documentation

    This article demonstrates that how to save the redacted document, replacing an original file...Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Redactor redactor = new Redactor ( @"sample.docx" ))...

    docs.groupdocs.com/redaction/net/save-overwriti...
  7. Load document from FTP | Documentation

    The page describes how to load PDF, Word, Excel, PowerPoint documents from FTP using GroupDocs.Annotation for Java....Consulting Blog Knowledge Base New Releases Status Websites aspose...document Annotator annotator = new Annotator ( getFileFromFtp (...

    docs.groupdocs.com/annotation/java/load-documen...
  8. Select specific pages for rasterized PDF | Docu...

    Select specific pages for rasterized PDF Saving document as a rasterized PDF, you can specify starting page index (zero based) and the number of pages from this index to save. Also, you can change the Compliance level from PDF/A-1b, which is used by default, to PDF/A-1a: final Redactor redactor = New Redactor("MultipageSample.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....Consulting Blog Knowledge Base New Releases Status Websites aspose...PDF/A-1a: final Redactor redactor = new Redactor ( "MultipageSample.docx"...

    docs.groupdocs.com/redaction/java/select-specif...
  9. Add replies to annotation | Documentation

    The page describes how to add annotation replies when collaborate over document using GroupDocs.Annotation for .NET API....Consulting Blog Knowledge Base New Releases Status Websites aspose...annotator = new Annotator ( "input.pdf" )) { User user1 = new User {...

    docs.groupdocs.com/annotation/net/add-replies-t...
  10. Load password-protected document | Documentation

    This article explains how to load password-protected document while using GroupDocs. Watermarks API....Consulting Blog Knowledge Base New Releases Status Websites aspose...LoadPasswordProtecte LoadOptions loadOptions = new LoadOptions (); loadOptions ...

    docs.groupdocs.com/watermark/net/load-password-...