Sort Score
Result 10 results
Languages All
Labels All
Results 3,851 - 3,860 of 20,672 for

docx

(0.05 sec)
  1. How to save PDF document with other format | Do...

    This article explains how to save signed PDF document with various file formats by GroupDocs.Signature API.... DocX , OverwriteExistingFil = true...signature . Sign ( "SignedPdf.docx" , signOptions , pdfSaveOptions...

    docs.groupdocs.com/signature/net/save-signed-pd...
  2. Select specific pages for rasterized PDF | Docu...

    This article demonstrates that how you can specify starting page index (zero based) and the number of pages from this index to save a rasterized PDF...docx" )) { RedactorChangeLog result...document formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails...

    docs.groupdocs.com/redaction/net/select-specifi...
  3. How to Convert Text to PDF in Java

    This short tutorial explains the thorough instructions to convert Text to PDF in Java and learn how to write a Java program to convert Text file into PDF....document formats such as HTML, DOCX, DOCM, DOT, ODT, and many more...

    kb.groupdocs.com/conversion/java/how-to-convert...
  4. How to Convert PDF to CSV using C#

    Quickly review the detailed instructions to convert PDF to CSV using C# and how to consume this guide for the implementation of PDF to CSV C# capability....variety of other formats such as DOCX, TIFF, XLSX, HTML, JPG, and...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  5. Viewer GWT Integration - Free Support Forum - g...

    Hi, <span lang="EN-GB" style="font-size: <br/> 12.0pt;font-family:"Times New Roman",serif;mso-fareast-font-family:"Times New Roman"; mso-ansi-language:EN-GB;mso-fareast-language:DE"> We are evaluating to integrate…...use case is to display a blob(docx,xlsx mostly) from the database...

    forum.groupdocs.com/t/viewer-gwt-integration/2339
  6. How to Integrate and Use GroupDocs' Online Sign...

    We have published a GroupDocs’ Signature plugin for Chrome. This online signature add-on provides GroupDocs users with a slick interface for signing documents from within Gmail. GroupDocs’ online signature plugin gives you the ability to sign documents online in Gmail emails, without having to install bulky office software. When you need to sign a document, GroupDocs Signature opens it for you. With the plugin, you no longer have to log in to the GroupDocs website to view a document....an attachment in PDF, DOC or DOCX formats, the plugin adds a Sign...

    blog.groupdocs.com/signature/how-to-integrate-a...
  7. Introducing Outlook Metadata Cleaner - An Outlo...

    Outlook Metadata Cleaner is an Outlook add-in powered by GroupDocs.Metadata for .NET that removes/cleans metadata properties in the files selected to be attached with email. It is an attach file button that appears in New Message window in Outlook. When some file is selected to be attached with email, the add-in first cleans all the metadata information saved with that file and then attaches metadata free file with email message....(PPT/PPTX) Word Document (DOC/DOCX) Spreadsheet Document (XLS/XLSX)...

    blog.groupdocs.com/metadata/introducing-outlook...
  8. HTML | Documentation

    This article explains that how to extract HTML formatted text from document page in Java....extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails...

    docs.groupdocs.com/parser/java/html/
  9. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/java/getting-known-...