ParserGetHyperlinks Method (PageAreaOptions) |
Namespace: GroupDocs.Parser
The following example shows how to extract hyperlinks from the document page area:
// Create an instance of Parser class using (Parser parser = new Parser(filePath)) { // Check if the document supports hyperlink extraction if (!parser.Features.Hyperlinks) { Console.WriteLine("Document isn't supports hyperlink extraction."); return; } // Create the options which are used for hyperlink extraction PageAreaOptions options = new PageAreaOptions(new Rectangle(new Point(380, 90), new Size(150, 50))); // Extract hyperlinks from the document page area IEnumerable<PageHyperlinkArea> hyperlinks = parser.GetHyperlinks(options); // Iterate over hyperlinks foreach (PageHyperlinkArea h in hyperlinks) { // Print the hyperlink text Console.WriteLine(h.Text); // Print the hyperlink URL Console.WriteLine(h.Url); Console.WriteLine(); } }