Sort Score
Result 10 results
Languages All
Labels All
Results 1,151 - 1,160 of 3,972 for

feature

(0.11 sec)
  1. How to Convert EPS to JPG in C#

    This tutorial explains the process to convert EPS to JPG in C# using document converter APIs and provides a sample code for C# EPS to JPG converter application....demonstrate the working of the feature. Here are the key steps and...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  2. Convert documents from Web URL to PDF using Jav...

    HI, We have a requirement where we want to convert documents from Web URL to pdf. Do the groupdocs API support this functionality? If so, help me navigate to the required source code. Also, does groupdocs support aspx t…...from a URL is a supported feature and this issue is raised in...

    forum.groupdocs.com/t/convert-documents-from-we...
  3. Specify encoding when loading documents | Group...

    This article explains how to specify encoding when loading documents with GroupDocs.Viewer within your .NET applications....documents Leave feedback This feature is supported for the following...

    docs.groupdocs.com/viewer/net/specify-encoding-...
  4. Compare multiple documents with specific compar...

    Following this guide you will learn how to compare multiple documents with different customisations - style detection, change comparison detalisation level and more....feedback On this page Note This feature available for Microsoft Word...

    docs.groupdocs.com/comparison/net/compare-multi...
  5. Merge HTML files using Java

    This guide offers essential instructions to merge HTML files using Java and includes a code snippet to demonstrate how to effectively combine HTML files in Java....resulting in more interactive and feature-rich web applications. Merging...

    kb.groupdocs.com/merger/java/merge-html-files-u...
  6. Perform Wildcard Search using C#

    Learn how to perform wildcard search using C#. Explore wildcard search in C# with single character and group wildcards for efficient and flexible search queries....Wildcard search is an essential feature for efficiently retrieving...

    kb.groupdocs.com/search/net/perform-wildcard-se...
  7. Working with metadata in Presentations | GroupDocs

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer to Supported document formats. Detecting the exact type of a presentation The following sample of code will help you to detect the exact type of a loaded presentation and extract some additional file format information. Load a presentation Extract the root metadata package Use the getPresentationType method to obtain file format information advanced_usage....presentations The inspection feature that is introduced in this...the code above and see the feature in action in our GitHub examples:...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....PDF documents The inspection feature that is introduced in this...the code above and see the feature in action in our GitHub examples:...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. Load WordProcessing document with options | Gro...

    Learn this article and check how to convert Microsoft Word DOC/DOCX and Open Document ODT/OTT files hiding comments and tracked changes panel, setting default font and applying font substitution using Features of GroupDocs.Conversion for .NET API....Word provides the “Comment” feature that allows multiple authors...changes Track Changes is another feature of Microsoft Word that provides...

    docs.groupdocs.com/conversion/net/load-wordproc...
  10. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class....PDF documents The inspection feature that is introduced in this...the code above and see the feature in action in our GitHub examples:...

    docs.groupdocs.com/metadata/java/working-with-m...