Sort Score
Result 10 results
Languages All
Labels All
Results 1,131 - 1,140 of 2,175 for

resource

(0.03 sec)
  1. Search thread safety | Documentation

    This article shows that how search thread safety works.... More resources GitHub examples You may easily...

    docs.groupdocs.com/search/net/search-thread-saf...
  2. Load from Stream | Documentation

    This article shows that how to load file from stream using redaction API... Save (); } } More resources GitHub examples You may easily...

    docs.groupdocs.com/redaction/net/load-from-stream/
  3. Get supported file formats | Documentation

    This page describes how the search api is used to obtain a list of supported file types....getDescription ()); } More resources Advanced usage topics To learn...

    docs.groupdocs.com/search/nodejs-java/get-suppo...
  4. Save a modified file to a stream | Documentation

    This article shows how to save a file to the specified stream...Save ( stream ); } } More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/net/save-a-modified...
  5. GroupDocs.Editor for Node.js | Documentation

    GroupDocs.Editor for Node.js enables document editing in form of HTML.Edit Word, Excel and PowerPoint documents using GroupDocs.Editor for Node.js powerful document editing API....Examples and Demos from GitHub RESOURCES GUIDE GroupDocs.Editor for...

    docs.groupdocs.com/editor/nodejs-java/
  6. GroupDocs.Viewer for .NET 19.3 is Released!

    We are happy to announce the release of version 19.3 of GroupDocs.Viewer for .NET. In this release, we have added several new features that target the PDF documents, archives and the source code files of Visual Basic and C#. Along with 2 bug fixes, we have made a couple of improvements for rendering of ZIP archives and vCard documents. For detailed information about the latest release, please have a look at the release notes....in using it, the following resources will be helpful for you to...

    blog.groupdocs.com/viewer/groupdocs.viewer-for-...
  7. HTML | Documentation

    This article explains that how to extract HTML formatted text from document page in Java....using the example above: More resources GitHub examples You may easily...

    docs.groupdocs.com/parser/java/html/
  8. 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.... More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/net/working-with-me...
  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.... More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/java/getting-known-...
  10. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document.... is_encrypted } " ) More resources Advanced usage topics To learn...

    docs.groupdocs.com/metadata/python-net/get-docu...