Sort Score
Result 10 results
Languages All
Labels All
Results 3,881 - 3,890 of 6,794 for

paged

(0.04 sec)
  1. GroupDocs.Comparison for .NET 3.3.0 Announced

    We are pleased to announce the monthly release of Next Generation GroupDocs.Comparison for .NET 3.3.0. with some exciting features. In this version, some new features has been introduced along with some important fixes. Also, this version has a new installer. We recommend that you download and update the API as soon as you can. GroupDocs.Comparison for .NET 3.3.0 - New FeaturesIn this new release of GroupDocs.Comparison for .NET 3.3.0 new features are introduced for word document format when use Comparison....Words for comparison and Page Number and Add Group Shapes...Here are some highlights: # Add Page Numbers Comparison for Word...

    blog.groupdocs.com/comparison/groupdocs-compari...
  2. Getting Started | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Examples Index Browser 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/nodejs-java/getting-s...
  3. extract images on GroupDocs Blog | Document Aut...

    extract images on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in extract images on GroupDocs Blog | Document Automation Solutions for .NET & Java Develo......PDF ou de n'importe quelle page spécifique à l'aide de l'API...PDF ou de n'importe quelle page spécifique à l'aide de l'API...

    blog.groupdocs.com/fr/tag/extract-images/index.xml
  4. Indexing options | Documentation

    This page contains a description of all the properties of the IndexingOptions class...options Leave feedback This page contains a description of all...text files is presented on the page . Encoding property The property...

    docs.groupdocs.com/search/net/indexing-options/
  5. Convert videos | Documentation

    In this article, you will learn how to convert a video file to another video format with GroupDocs.Conversion for .NET....videos Leave feedback On this page About video file formats Everyone...ogg" , options ); } Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/conversion/net/convert/video/
  6. Visualize arquivos CAD usando a API Java | Conv...

    Construa seu visualizador de arquivos CAD em Java. Converta DWG, DGN para renderizar como HTML, JPG, PNG ou PDF usando a API Java do visualizador de documentos do GroupDocs....forEmbeddedResources("page_{0}.html"); viewer.view(viewOptions);...forExternalResources("page_{0}.html", "page_{0}/resource_{1}", "page_{0}/resources");...

    blog.groupdocs.com/pt/viewer/viewing-cad-docume...
  7. Перегляд файлів CAD за допомогою Java API | Пер...

    Створіть свій засіб перегляду файлів САПР на Java. Конвертуйте DWG, DGN для візуалізації як HTML, JPG, PNG або PDF за допомогою Java API переглядача документів від GroupDocs....forEmbeddedResources("page_{0}.html"); viewer.view(viewOptions);...forExternalResources("page_{0}.html", "page_{0}/resource_{1}", "page_{0}/resources");...

    blog.groupdocs.com/uk/viewer/viewing-cad-docume...
  8. Compare multiple documents | Documentation

    Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Java....resultInputStream ); } 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/comparison/java/compare-mult...
  9. 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.... 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/getting-known-...
  10. 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.... 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/net/working-with-me...