onButtonUp - event of the PmgButton object
Description:
The event is triggered on releasing the button (by the keyboard or the mouse).
The event triggering also depends on setting the "
'onButtonUp' event always triggered" configurator.
Parameters:
pMe | (Object) Reference to the PmgButton object where the event rises. |
pEvent | (Object) Reference to an object describing detailed information about the specific event.
The pEvent parameter is not used here because this event does not need any additional information. |
---|
Example:
A method is called in the event that replaces the current panel by another. See
Pm.CreateView method.
JavaScriptVBScriptSelect and copy to clipboard
var oCreator = Pm.CreateView(null, "../Panel2", "", "target:main;");
oCreator.Open();
Dim oCreator
Set oCreator = Pm.CreateView(Empty, "../Panel2", "", "target:main;")
oCreator.Open