Page 1 of 1

File - Drag & Drop - Open?

Posted: Thu Nov 09, 2017 7:58 am
by userpark
I am using "PDF-XChange Editor SDK".

I have created an application using the SDK, but I do not know how to open and drop the file directly into the ActiveX object "AxPDFXEdit.AxPXV_Control", rather than drag and drop it into the Form object of the application.

I would be grateful if you could give me an example (c#) or related knowledge.

Re: File - Drag & Drop - Open?  SOLVED

Posted: Thu Nov 09, 2017 8:39 am
by Sasha - Tracker Dev Team
Hello userpark,

You will have to set this setting to true:

Code: Select all

pdfCtl.Inst.Settings["Docs.CanOpenByDrop"].v = true;
pdfCtl.Inst.FireAppPrefsChanged(PDFXEdit.PXV_AppPrefsChanges.PXV_AppPrefsChange_Documents);
Cheers,
Alex