|
|
|
|
|
My key and version dont give access to page.Annots, i havent renew it yet.
I have a Word document with underlined words that i need to export it like a PDF to work with it. Those underlined words will be reachable with page.Annots method? It seems that whith page.Annots i can just find annotations made after it became a PDF. Thanks in advance.
|
|
|
According to the PDF specification, text objects do not have such an attribute as "underlined word". The underline effect is achieved by using specialized annotations. Try the following code: Code:
foreach (var annot in page.Annots)
{
if (!(annot is PdfUnderlineAnnotation))
continue;
string text = page.Text.GetBoundedText(annot.Rectangle);
}
|
|
|
I want to find underlined words in a pdf. PdfTextObject class doesn't show such information. How can I get those?
|
Important Information:
The Patagames Software Support Forum uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close