This method/property/event is considered obsolete and is functional only if the "Level of integration of panel viewer and the local application" configurator is set to full - FULL access from scripts to the whole application (only for VBScript and if the "Enable multiple opening of local panel" configurator IS NOT SET.
pMe | (Object) Reference to the PmaPanel object where the event rises. |
---|---|
pEvent | (Object) Reference to object describing detailed information about the specific event. pEvent.Action - (Long) Indication of pressing or releasing the button. 0 - releasing the button 1 - pressing the button 2 - double-clicking the left mouse button pEvent.Shift - (Boolean) Indication of concurrent pressing the Shift key. pEvent.Alt - (Boolean) Indication of concurrent pressing the Alt key. |
if (pEvent.Action == 0)
{
//do something if the mouse button is released
if (pEvent.Ctrl)
//if moreover the Ctrl key has been pressed, do even something more
}