Control+p is working on full screen while print menu is disabled?

I have disabled print button on menu (three dots menu) but in full screen mode as i press cntl+p command then small print dialog box is showing.

Can i user to restrict cntl+p on on full screen mode ?

Print popup is showing on full screen.
It should not show while i have disabled print button from three dots menu.
U can check this on below given screen.

Hi there!

Just disabling the print button does not disable the entire print feature. To do that you can use the disableFeatures API like so:

WebViewer({
 ...
}, element).then((instance) => {

  instance.disableFeatures([instance.Feature.Print]);

});

Thanks!
Logan