Sort Score
Result 10 results
Languages All
Labels All
Results 2,461 - 2,470 of 6,564 for

page

(0.07 sec)
  1. System Requirements | Documentation

    GroupDocs.Redaction for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed....Visual Studio 2019 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/system-require...
  2. GroupDocs.Viewer 2.0 - New Features & Improveme...

    Last week, we released an update to the GroupDocs.Viewer library for the .NET platform. Now it is time to share what version 2.0 of GroupDocs.Viewer has to offer to the Java world. You can find a full list of new features, improvements and fixes on the GroupDocs.Viewer download Page. The most notable improvements, I’m going to discover in this article. Native HTML5-Based Document Rendering The brightest gem presented in this version is the HTML-based rendering mode - an addition to the image-based one that was the only choice in previous versions of the document viewer....Viewer download page . The most notable improvements...mode, all text is placed on the page using pure HTML and CSS, while...

    blog.groupdocs.com/viewer/groupdocs-viewer-2-0-...
  3. Working with GroupDocs.Assembly Engine | Docume...

    About this section The articles in this section will be talking about technical concepts to be considered when creating document templates in order to generate your required reports. After going through this section, hopefully you will understand the template syntax, composing expressions and other C# syntax supported programming elements. Additionally, we’ll also discuss how GroupDocs.Assembly engine reads the syntax, evaluates the expressions to populate with assigned data and then generates your desired report according to your business needs....Assembly Engine APIs 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/assembly/net/working-with-gr...
  4. Business Case of Manager-Client Contract System...

    Note This business case has been conceived for the demonstration purpose and serves well for a typical manager-client system. There may be simpler or complex scenarios in real life businesses. Business Case There are many managers offering their services. There are multiple clients in the market. A manager can sign multiple contracts and start working. A contract may contain multiple clients. The data is fetched from custom objects and report is generated.... 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/assembly/java/business-case-...
  5. Listening to conversion process events | Docume...

    Follow this guide and learn how to track conversion process by subscribing to specific events of GroupDocs.Conversion for Java 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/conversion/java/listening/
  6. HTML | Documentation

    This article explains that how to extract HTML formatted text from document Page in Java.... 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/parser/java/html/
  7. Get supported file formats | Documentation

    This article shows how to check supported file formats.... 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/parser/java/get-supported-fi...
  8. Extract text from HTML documents | Documentation

    To extract a text from HTML documents GetText method is used. This method allows to extract a text from the entire document. Pagination and raw mode is not supported for emails.... 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/parser/net/extract-text-from...
  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.... 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...
  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.... 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-...