Microsoft Windows Phone 8.1 support ends (13 Jul 2017)

Microsoft has ended support for Windows Phone 8.1

Development and suggestions about third part tool integration.
Cordova, Xamarin, Basic4Android topics are listed here.

Managed Tap on CheckBox

More
IP: 93.34.225.185 7 years 10 months ago #13781 by mfranc28
I'd like to know how I can managed tap on checkbox.
I open my PDF with OpenStream, I can edit field type but when I tap on a CheckBox nothing happen.
More
IP: 93.37.175.55 7 years 10 months ago #13783 by nermeen
Replied by nermeen on topic Managed Tap on CheckBox
Checkbox/radio buttons are managed on the single tap event, it gets recognized and handled using the following code:
Code:
int check = annot.CheckStatus; if(doc.CanSave() && check >= 0) { switch (check) { case 0: annot.SetCheckValue(true); break; case 1: annot.SetCheckValue(false); break; case 2: case 3: annot.SetRadio(); break; } mView.RefreshCurrentPage(); mView.PDFEndAnnot(); }
If you still have issues with the check boxes, can you please send us the pdf?
Time to create page: 0.376 seconds
Powered by Kunena Forum