I want to implement additional features to a WebView2 Gadget.
For that I need additional constants, but I don't want to run into conflicts with already available values.
I tried somenting like:
Code: Select all
Enumeration PB_Web
#WebView2_SystemMenue
EndEnumeration
and PB_Web (my guess) does not do what it should.
But I also don't want to use values > 1000, because of unneeded size of PB internal arrays.
Any hint?