Sort Score
Result 10 results
Languages All
Labels All
Results 981 - 990 of 29,564 for

search watermark

(0.06 sec)
  1. Extract data from Microsoft Office Word documen...

    GroupDocs.Parser provides the functionality to extract data from Microsoft Office Word documents. Both classic (doc, dot) and Open XML (docx, dotx) formats are supported. Also LibreOffice Writer (OpenOffice.org Writer) formats and RTF are supported. The following table provides the list of supported formats: Format Description DOC Microsoft Office Word Document DOT Microsoft Office Word Document Template DOCX Microsoft Office Open XML Document DOCM Microsoft Office Open XML Macro-Enabled Document DOTX Microsoft Office Open XML Document Template DOTM Microsoft Office Open XML Document Macro-Enabled Template TXT Plain text ODT Open Document Text OTT Open Document Text Template RTF Rich Text Format More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/parser/net/extract-data-from...
  2. Add annotation to the document | GroupDocs

    The page describes document annotations of different types and how to add annotations to a document using GroupDocs.Annotation API....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/annotation/net/add-annotatio...
  3. Getting known property descriptors | GroupDocs

    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....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/getting-known-...
  4. Getting known property descriptors | GroupDocs

    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 JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iSearch Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  5. Indexing from different sources | GroupDocs

    GroupDocs.Search allows indexing documents from various sources....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/search/java/indexing-from-di...
  6. Redact Text in RTF using C#

    This tutorial will guide you through the process of how to redact text in RTF using C#. Additionally, you'll get simple code example to replace text in RTF using C#....Search Product Family GroupDocs.Parser...Product Family GroupDocs.Watermark Product Family GroupDocs.Merger...

    kb.groupdocs.com/redaction/net/redact-text-in-r...
  7. Redact Text in DOCX using Java

    This topic will provide guidance on how to redact text in DOCX using Java. Without need of additional software installation, you can replace text in DOCX using Java....Search Product Family GroupDocs.Parser...Product Family GroupDocs.Watermark Product Family GroupDocs.Merger...

    kb.groupdocs.com/redaction/java/redact-text-in-...
  8. Set metadata properties | GroupDocs

    The SetProperties method is used to update or add metadata. You can easily add metadata to photos, pdfs or you can update or add data to mp3 files....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/nodejs-java/set-met...
  9. Working with metadata in Spreadsheets | GroupDocs

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of spreadsheet formats such as XLS, XLSX, ODS, etc. For the full list of supported document formats please refer to Supported Document Formats. Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded spreadsheet and extract some additional file format information. Load a Spreadsheet document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Working with metadata in Word Processing docume...

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of WordProcessing documents such as DOC, DOCX, ODT, etc. For the full list of supported document formats please refer to Supported document formats. Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded document and extract some additional file format information. Load a WordProcessing document Extract the root metadata package Use the getWordProcessingType method to obtain file format information advanced_usage....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

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