Sort Score
Result 10 results
Languages All
Labels All
Results 2,611 - 2,620 of 11,753 for

text

(0.93 sec)
  1. [Release] GroupDocs.Annotation for .NET 26.6 - ...

    Dear GroupDocs users, we’re pleased to announce GroupDocs.Annotation for .NET 26.6. This release restructures the NuGet packaging to add .NET 6 and .NET 8 builds, upgrades all underlying document engines, and ships seven…...Visio/Diagram — GetDocumentInfo text lines Document.GetDocumentInfo()...extractor was reading shape text incorrectly after the engine...

    forum.groupdocs.com/t/release-groupdocs-annotat...
  2. load-password-static.txt

    # **Title of the document** ## **Subtitle #1** Text is normal, then **bold**, then *italic*, then underscore, and finally normal again. Now ~~strikethrough~~, then double strikethrough, and undersc......document** ## **Subtitle #1** Text is normal, then **bold**, then...a subscript456. This part of text has a red background. These...

    docs.groupdocs.com/markdown/python-net/_output_...
  3. Extract attachments from Emails | GroupDocs

    Extract attachments from Emails To extract attachments from emails getContainer method is used. This method returns the collection of ContainerItem objects. Email Attachment can contain the following metadata: Name Description content-type The MIME type of the attachment content These metadata refer to a container element itself, not a document. Here are the steps to extract an email Text from email attachments: Instantiate Parser object for the initial document; Call getContainer method and obtain collection of ContainerItem objects; Check if collection isn’t null (container extraction is supported for the document); Iterate through the collection and obtain Parser object to extract a Text....the steps to extract an email text from email attachments: Instantiate...and obtain object to extract a text. The following example shows...

    docs.groupdocs.com/parser/java/extract-attachme...
  4. archive parsing on GroupDocs Blog | Document Au...

    archive parsing on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in archive parsing on GroupDocs Blog | Document Automation Solutions for .NET & Java Deve......NET & Java Developers Wie man Text aus ZIP-/RAR-Archiven mit GroupDocs...Leitfaden, der zeigt, wie man Text aus ZIP‑ und RAR‑Archiven mit...

    blog.groupdocs.com/de/tag/archive-parsing/index...
  5. compare two files using java on GroupDocs Blog ...

    compare two files using java on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in compare two files using java on GroupDocs Blog | Document Automation Solu......Java Developers เปรียบเทียบไฟล์ Text, Word และ PDF กับ Java Difference...Difference Library เปรียบเทียบไฟล์ Text, Word, PDF และเอกสารอื่นๆ โดยใช้...

    blog.groupdocs.com/th/tag/compare-two-files-usi...
  6. Extract hyperlinks from document page area | Gr...

    This article explains that how to extract hyperlinks from document page area....Description The page that contains the text area. The rectangular area on...that contains the text area. The hyperlink text. The hyperlink URL...

    docs.groupdocs.com/parser/java/extract-hyperlin...
  7. Working with Spreadsheets in GroupDocs.Viewer f...

    Learn how to load a Spreadsheet (Excel) document and render it to HTML, PDF, PNG and JPEG with different options...worksheet gridlines Control cell text overflow OverlayIfNextIsEmpty...Spreadsheet format (ODS, FODS, OTS), text-based separator-delimited formats...

    blog.groupdocs.com/viewer/working-with-spreadsh...
  8. 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.... Hyperlink can contain a text: <hyperlink link= "www.google...method returns null value if text structure extraction isn’t supported...

    docs.groupdocs.com/parser/java/extract-hyperlin...
  9. Load document from url | GroupDocs

    Learn how to Load document from url....Parser ( url )) { // Extract a text into the reader using ( TextReader...{ // Print a text from the document // If text extraction isn't...

    docs.groupdocs.com/parser/net/load-document-fro...
  10. Load document from stream | GroupDocs

    There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a Text into the reader try (TextReader reader = parser....Parser ( stream )) { // Extract a text into the reader try ( TextReader...{ // Print a text from the document // If text extraction isn't...

    docs.groupdocs.com/parser/java/load-document-fr...