Enabled - property of the PmaPanel object
Values:
true - The Pmg object captures every event that is triggered by the user (by clicking the mouse, etc.).
false - The Pmg object doesn't capture any event that is triggered by the user.
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oPanel = pMe.Pm("/Panel");
var bEnabled = oPanel.Enabled;
// Reading from the property
oPanel.Enabled = true;
// Writing into the property
Dim oPanel
Set oPanel = pMe.Pm("/Panel")
Dim bEnabled
bEnabled = oPanel.Enabled
' Reading from the property
oPanel.Enabled = true
' Writing into the property