sEventName | (String) Event name of the Pmg object. |
---|---|
sFuncId | (String) Identifier of registered event function.
- Allows removal of the function by the RemoveEvent method.
- Prevents duplicate registering of the same function.
- May contain any characters (this is not a system name).
- Must not be an empty string.
- It is recommended to use e.g. the whole path to the Pmg object. |
Func | (Function) The event function will be called when the event is triggered.
ev: It has no properties so far. |
function Test(ev)
{
Pm.Debug("AddEvent onButtonUp");
}
pMe.Items("/Butt").AddEvent("onButtonUp", pMe.GetPathName(), Test);