Sort Score
Result 10 results
Languages All
Labels All
Results 3,481 - 3,490 of 13,231 for

2024

(0.1 sec)
  1. GroupDocs.Conversion for .NET 24.6 Release Notes

    GroupDocs.Conversion for .NET 24.6 Release Notes – the latest updates and fixes....NET Release Notes 2024 Browse our Products Toggle navigation...

    releases.groupdocs.com/conversion/net/release-n...
  2. 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....Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/assembly/net/working-with-gr...
  3. 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....Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/assembly/java/business-case-...
  4. Add search text annotation | Documentation

    The page describes how to add search text annotation to a document using GroupDocs.Annotation for .NET."...Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/annotation/net/add-search-te...
  5. .NET Standard 2.0 API Limitations | Documentation

    This section describes GroupDocs.Signature for .NET limitations when using under .NET Standard 2.0 environment...Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/signature/net/net-standard-2...
  6. Add document to Spreadsheet via OLE | Documenta...

    This article explains how to add document to Spreadsheet via OLE with GroupDocs.Merger within your .NET applications....Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/merger/net/add-document-to-s...
  7. HTML | Documentation

    This article explains that how to extract HTML formatted text from document page in Java....Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/parser/java/html/
  8. 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....Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/signature/net/save-signed-pd...
  9. How to search for Digital signatures | Document...

    This topic explains how to search for digital electronic signatures across the documents with GroupDocs.Signature API....Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

    docs.groupdocs.com/signature/net/search-for-dig...
  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....Products Support © Groupdocs 2001-2024. All Rights Reserved. Privacy...

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