Class Information:
| ClassPath: | MEng.System.CQC.Runtime.EventHandler |
| Parent ClassPath: | MEng.Object |
| Copyable: | No |
| Final: | No |
MEng.System.CQC.Runtime.EventHandler is a base class that you can derive from if you want to do event handling via CML. If you create a triggered event and the action associated with that event invokes a CML macro, and that macro is derived from this class, then the event engine will know that this class wants to have access to event data. You can then call the GetEvent() method, documented below to get a copy of the event that caused your CML macro to be run. You can then examine any of the event data using the methods of the Event class and do whatever it is you need to do in response.
Constructors:
Constructor();
There is only a default constructor at this time.
Final, Const Methods:
GetEvent([Out] MEng.System.CQC.Runtime.Event ToFill);
This method can be called to get a copy of the event that caused your CML based event handler to be invoked.