Sort Score
Result 10 results
Languages All
Labels All
Results 7,611 - 7,620 of 31,792 for

groupdocs.viewer

(0.14 sec)
  1. System Requirements | Documentation

    GroupDocs.Editor for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed...Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/editor/net/system-requirements/
  2. Updating metadata | Documentation

    The Example in this article demonstrates how to update metadata properties using a combination of criteria...Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/updating-metadata/
  3. Traverse a whole metadata tree | Documentation

    This article explains that the GroupDocs.Metadata represents any loaded file as a tree consisting of metadata properties and nested metadata packages. You can easily iterate through the metadata tree...Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/traverse-a-whol...
  4. C# .NET APIs to View, Convert, Annotate, Sign, ...

    GroupDocs .NET document manipulation libraries and APIs. Consume any API into .NET application for generation, manipulation or conversion of 50+ documents....NET: GroupDocs.Viewer for .NET Powerful document...individual solutions for GroupDocs.Viewer for .NET GroupDocs.Annotation...

    products.groupdocs.com/total/net/
  5. C# .NET APIs to View, Convert, Annotate, Sign, ...

    GroupDocs .NET document manipulation libraries and APIs. Consume any API into .NET application for generation, manipulation or conversion of 50+ documents....NET: GroupDocs.Viewer for .NET Powerful document...individual solutions for GroupDocs.Viewer for .NET GroupDocs.Annotation...

    products.groupdocs.com/total/net/
  6. Delete indexed documents | Documentation

    GroupDocs.Search for Java has the ability to remove individual documents from the index that are indexed from a stream or structure....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/search/java/delete-indexed-d...
  7. OCR support | Documentation

    OCR support means the ability to connect an external module (library) for the recognition of printed text (optical character recognition, OCR) on images, either separate or embedded in documents. To connect OCR, you need to implement the IOcrConnector interface in the client code. The following example demonstrates how to implement the OCR connector using com.aspose.ocr library for text recognition in images. const indexFolder = 'c:/MyIndex/'; const documentsFolder = 'c:/MyDocuments/'; const query = 'Einstein'; // Creating an index const index = new groupdocs....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/search/nodejs-java/ocr-support/
  8. Add text or image watermark | Documentation

    This article shows how to add watermark and save resultant document. It is capable to add watermark to image or documents....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/watermark/java/add-text-or-i...
  9. Convert eBook formats | Documentation

    In this article, you will learn how to convert eBook formats with GroupDocs.Conversion for Java....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

    docs.groupdocs.com/conversion/java/convert/ebook/
  10. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....Total Product Family GroupDocs.Viewer Product Solution GroupDocs...

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