if you define your own class, the second option is to set a public "raise" handler for the event, for example
event Click: ClickEventhandler; public raise;
this causes the compiler to make the method publicly available so that other classes can call "Click ()" to trigger the event. (of course, any other impersonal visibility also works).
marc hoffman
source share