Sort Score
Result 10 results
Languages All
Labels All
Results 3,261 - 3,270 of 3,869 for

assembly

(0.03 sec)
  1. Text redactions | Documentation

    This article explains that how Java redaction API allows you to easily redact data of sensitive or private nature from your documents. You can apply text redaction using exact phrase or regular expression for documents of different formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and others....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/text-redactions/
  2. Synonym dictionary | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about Synonym dictionary using Java....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/search/nodejs-java/synonym-d...
  3. Extract text from Microsoft Office Word documen...

    To extract a text from Microsoft Office Word documents getText and getText(int) methods are used. These methods allow to extract a text from the entire document or a text from the selected page. TextOptions parameter is ignored for Microsoft Office Words documents. Here are the steps to extract a text from Microsoft Office Word document: Instantiate Parser object for the initial document; Call getText method and obtain TextReader object; Read a text from reader....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/parser/java/extract-text-fro...
  4. Installation | Documentation

    Install from Nuget NuGet is the easiest way to download and install GroupDocs.Parser for .NET. There are ways to install it in your project. Install via Package Manager GUI Follow these steps to reference GroupDocs.Parser using Package Manager GUI: Open your solution/project in Visual Studio. Click Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution. You can also access the same option through the Solution Explorer. Right-click the solution or project and select Manage NuGet Packages from the context menu Select Browse tab and type “GroupDocs....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/parser/net/installation/
  5. Working with worksheet backgrounds | Documentation

    This article explains how to work with worksheet backgrounds while using GroupDocs watermarking API...Assembly Product Solution GroupDocs...

    docs.groupdocs.com/watermark/net/working-with-w...
  6. Locking watermark in word processing document |...

    This article explains how to lock the watermarks in a Word document to restrict the editing....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/watermark/net/locking-waterm...
  7. Handling the ID3v1 tag | Documentation

    This article explains how to handle ID3v1 tag....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/handling-the-i...
  8. Working with metadata in PSD images | Documenta...

    Reading Photoshop Metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop metadata associated with a PSD image. For more information on the Photoshop file format and metadata blocks please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/. The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop file format) from a PSD image. Load a PSD file Get the root metadata package Extract the ImageResourcePackage instance and obtain a list of ImageResourceBlock objects Iterate trough the collection of resource blocks advanced_usage....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  9. Skip loading of external resources | Documentation

    Learn this article and check how to restrict loading of external resources during conversion...Assembly Product Solution GroupDocs...

    docs.groupdocs.com/conversion/java/skip-loading...
  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()); // ....Assembly Product Solution GroupDocs...

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