I'm using iTextSharp
to return the text from a page in a PDF document,
using this :
var locationTextExtractionStrategy = new LocationTextExtractionStrategy();
string textFromPage = PdfTextExtractor.GetTextFromPage(pdfReader, i + 1, locationTextExtractionStrategy);
I understand from previous questions here that I need to access
renderInfo.GetBaseline().GetStartPoint();
But I don't understand how to call that method from LocationTextExtractionStrategy()