Sort Score
Result 10 results
Languages All
Labels All
Results 151 - 160 of 227 for

tagged docx to pdf

(0.22 sec)
  1. 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....getAccessLevel ()); for ( PropertyTag tag : descriptor . getTags ()) {...{ System . out . println ( tag ); } System . out . println ();...

    docs.groupdocs.com/metadata/java/getting-known-...
  2. Set metadata properties | Documentation

    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.... tagging . Tags . time . created ) . either...ContainsTagSpecifica ( gm . tagging . Tags . time . modified )) now...

    docs.groupdocs.com/metadata/python-net/set-meta...
  3. Extracting metadata | Documentation

    Using the GroupDocs.Metadata search engine you can extract desired metadata properties from files of different types. You don’t need To worry about the exact file format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported files in various metadata packages. All tags defined in GroupDocs....metadata properties are marked with tags that allow searching them across...various metadata packages. All tags defined in GroupDocs.Metadata...

    docs.groupdocs.com/metadata/python-net/extracti...
  4. Set metadata properties | Documentation

    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.... Tags . getTime (). getCreated ())...ContainsTagSpecifica ( groupdocs . metadata . Tags . getTime (). getModified ()))...

    docs.groupdocs.com/metadata/nodejs-java/set-met...
  5. HTML | Documentation

    This article explains that how To extract HTML formatted text from document page in Java....()); } } Tag Description p Paragraph is surrounded by p tag a Hyperlinks...by b tag i Text with Italic font is surrounded by i tag h1 -...

    docs.groupdocs.com/parser/java/html/
  6. HTML | Documentation

    This article explains that how To extract HTML formatted text from document page....following HTML tags are supported by the API: Tag Description <p>...Paragraph is surrounded by <p> tag <a> Hyperlinks <b> Text with...

    docs.groupdocs.com/parser/net/html/
  7. Indexing additional fields | Documentation

    This article demonstrate that how To associate each document with certain additional metadata....metadata, for example, a set of tags, a number in the library catalog...@"C:\MyDocuments\BhagavadGitaAsItIs.pdf" . ToLowerInvariant (), "Spiritual"...

    docs.groupdocs.com/search/net/indexing-addition...
  8. Remove metadata properties | Documentation

    The easiest way To remove metadata properties from a file is To use corresponding tags that allow you To locate the desired properties across all metadata packages....file is to use corresponding tags that allow you to locate the...metadata . Metadata ( "input.docx" ); # Remove all the properties...

    docs.groupdocs.com/metadata/python-net/remove-m...
  9. Remove metadata properties | Documentation

    The easiest way To remove metadata properties from a file is To use corresponding tags that allow you To locate the desired properties across all metadata packages....file is to use corresponding tags that allow you to locate the...metadata . Metadata ( "input.docx" ); // Remove all the properties...

    docs.groupdocs.com/metadata/nodejs-java/remove-...
  10. Extract hyperlinks from Microsoft Office Word d...

    To extract hyperlinks from Microsoft Office Word document getStructure method is used. This method returns XML representation of the document. Hyperlinks are represented by “hyperlink” tag; “link” attribute contains hyperlink’s URL. For more details, see Extract text structure. Hyperlink can contain a text: google.com Warning getStructure method returns null value if text structure extraction isn’t supported for the document. For example, text structure extraction isn’t supported for TXT files. Therefore, for TXT file getStructure method returns null....are represented by “hyperlink” tag; “link” attribute contains hyperlink’s...documents and extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX,...

    docs.groupdocs.com/parser/java/extract-hyperlin...