Detailed description of issue
I want to prevent text selection when dragging.
please tell me how to disble.
Hi there! Thanks for using PDF.js Express.
You can disable text selection using the disableFeature
API
WebViewer({...}).then(instance => {
instance.disableFeatures([instance.Feature.TextSelection])
})
Thanks,
Logan
Works well. Thanks, Logan
1 Like