I have COM component: private AxFoxitPDFSDKProLib.AxFoxitPDFSDK axFoxitPDFSDK1;
. I loaded PDF into it:
public Form1() {
InitializeComponent();
axFoxitPDFSDK1.OpenFile("C:/cw3_31paz.pdf", null);
}
I would like to get all text from inside of this PDF as String
. I couldn't find any method to do it, but I have found method axFoxitPDFSDK1.GetSelectedText();
but didn't find selectAll()
to select everything