Sort Score
Result 10 results
Languages All
Labels All
Results 3,671 - 3,680 of 6,984 for

paged

(0.05 sec)
  1. 使用 .NET API 在 C# 中查看 CAD 文件 |轉換 DWG DXF DGN DWF

    在 C# 中構建您的 CAD 文件查看器以查看工程圖。使用 GroupDocs 的文檔查看器 .NET API 將 DWG、DGN 轉換為 HTML、JPG、PNG 或 PDF。...ForEmbeddedResources("page_{0}.html"); viewer.View(viewOptions);...ForExternalResources( "page_{0}.html","page_{0}/resource_{1}","page_{0}/resources");...

    blog.groupdocs.com/zh-hant/viewer/view-cad-docu...
  2. groupdocs.annotation

    Online Document Annotation | Conholdate Apps,About - groupdocs.cloud - Websites - aspose.app,About - groupdocs.cloud - Websites - aspose.com,Aspose.Pdf for...PDF file, Page swapping Delete the Page Add new page Rotate the...the page Please let me know if it is possible using the Aspose...

    search.aspose.com/q/GroupDocs.Annotation.html
  3. Search Image Signature in C# in Word, Excel, Po...

    Search Barcode, QR Code, digital, or electronic signature with image data content from any document (DOC, XLS, PPT, PDF) in C# using .NET Signature API....WriteLine($"QRCode signature found at page {qrCodeSignature.PageNumber}...WriteLine($"Signature found at page {resSignature.PageNumber} with...

    blog.groupdocs.com/signature/search-image-signa...
  4. 在 C# 中将演示文稿转换为图像 | PPT转JPG | PPT转PNG

    使用 C# 将 PPT/PPTX 格式的 PowerPoint 演示文稿转换为 JPG 或 PNG 格式。使用 .NET API 以编程方式将演示文稿转换为图像。...SavePageStream getPageStream = page => new FileStream(string.Fo...Format("path/convertedPPT{0}.jpg", page), FileMode.Create); using (Converter...

    blog.groupdocs.com/zh/conversion/convert-presen...
  5. Tags

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....orientation 2 change page orientation in CSharp 1 change page orientation...orientation in Java 1 Change Page Sequence in Java 1 Change Password in...

    blog.groupdocs.com/tags/
  6. How to Run | Documentation

    Download from GitHub The complete examples package of GroupDocs.Metadata is hosted on Github. You can either download the ZIP file from here or clone the repository of Github using your favourite Github client. In case you download the ZIP file, extract the folders on your local disk. The extracted files and folders will look like the following image: Open IntelliJ Idea and import the project to get started with it.... 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/metadata/java/how-to-run/
  7. Search flow | Documentation

    This article shows the internal stages of each search operation using Java search API.... 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/search/java/search-flow/
  8. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured.... 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/extend-suppor...
  9. Load from Stream | Documentation

    This article shows that how to load file from stream using redaction API... 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/net/load-from-stream/
  10. 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.... 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/save-overwrit...