Aspose PDF Document

Hai,

Is there any way to get the Rectangle coordinates of a line or paragraph using Paragraph Absorber?

ParagraphAbsorber absorber = new ParagraphAbsorber();
absorber.Visit(doc);
foreach (PageMarkup markup in absorber.PageMarkups)
{
foreach (MarkupSection section in markup.Sections)
{
foreach (MarkupParagraph paragraph in section.Paragraphs)
{
// Is it possible in anyways to get the retcangle cordinates of ‘paragraph’ here
}
}
}

@pooja.jayan

I am afraid you can not get rectangular coordinates of the paragraph at specified stage.