Sort Score
Result 10 results
Languages All
Labels All
Results 1,891 - 1,900 of 12,396 for

format

(1.51 sec)
  1. Add Metered Licence using GroupDocs.Editor for ...

    At GroupDocs, we are always focused on improving our API’s. In this regard, we are announcing another monthly release of GroupDocs.Editor for .NET v18.6. In this release, we have extended the supported file Formats by adding variety of Cells document Formats. Furthermore, support for metered licence system is also introduced in this release. We’d recommend our users to download latest API and get benefits from new and enhanced API features....file formats by adding variety of Cells document formats. Furthermore...document Convertion to HTML format Generation from input HTML...

    blog.groupdocs.com/editor/document-editor-api-f...
  2. Add component to the document | GroupDocs

    The page describes how to add components to a document using GroupDocs.Annotation API....components are specific to the file format. That means you cannot apply...

    docs.groupdocs.com/annotation/java/add-componen...
  3. Conversion options by document family | GroupDocs

    This section explains GroupDocs.Conversion for Java convert options specific to various document types...email attachment to different format Convert to Image with advanced...

    docs.groupdocs.com/conversion/java/conversion-o...
  4. Third and last question from us for now - Free ...

    We would like to use GroupDocs.Conversion to convert DOCX’s to and from the flat XML Format (flat OPC).  From your responses to our other recent requests, it seems that Conversion is more about producing human-friendly …...DOCX’s to and from the flat XML format (flat OPC). From your responses...

    forum.groupdocs.com/t/third-and-last-question-f...
  5. Extract Metadata from .MKV Files using GroupDoc...

    Today, we are pleased to announce the release of GroupDocs.Metadata for .NET 19.1. In this version, we have introduced two new features and added seven enhancements. Using the latest version, you can extract metadata from Matroska Multimedia Container (.MKV) files. Furthermore, the latest version allows you to extract metadata from password-protected OneNote documents. Please have a look at the release notes for more details. Features Introduced Support for the Matroska Multimedia Container FilesGroupDocs....MKV files: # Extracting MKV Format Metadata Extracting Matroska...

    blog.groupdocs.com/metadata/extract-metadata-fr...
  6. Extract Metadata from .MKV Files using GroupDoc...

    Today, we are pleased to announce the release of GroupDocs.Metadata for .NET 19.1. In this version, we have introduced two new features and added seven enhancements. Using the latest version, you can extract metadata from Matroska Multimedia Container (.MKV) files. Furthermore, the latest version allows you to extract metadata from password-protected OneNote documents. Please have a look at the release notes for more details. Features Introduced Support for the Matroska Multimedia Container FilesGroupDocs....MKV files: # Extracting MKV Format Metadata Extracting Matroska...

    blog.groupdocs.com/metadata/extract-metadata-fr...
  7. Get document information | GroupDocs

    This article explains how to detect document file type and calculate pages count when merge PDF, Word(DOC, DOCX), Excel(XLS, XLSX), PowerPoint(PPT, PPTX) files with GroupDocs.Merger....document file type, extension, format name etc. - indicates count...

    docs.groupdocs.com/merger/net/get-document-info...
  8. 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…...new EmailConvertOptions() { Format=EmailFileType.Msg}; converter...

    forum.groupdocs.com/t/sent-date-not-preserved-w...
  9. Adding watermarks | GroupDocs

    GroupDocs.Watermark for Java supports the following watermark types. TextWatermark ImageWatermark Adding watermark to any supported document Format using GroupDocs.Watermark consists of some easy steps. Following are the steps to add a watermark to a document. Load the document Create and initialize watermark object Set watermark properties Add a watermark to the document Save the document For more details please refer to the following guides:...watermark to any supported document format using GroupDocs.Watermark consists...

    docs.groupdocs.com/watermark/java/adding-waterm...
  10. Save overwriting original file | GroupDocs

    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....Save the document in original format overwriting original file redactor...

    docs.groupdocs.com/redaction/java/save-overwrit...