State - property of the PmaPanel object
Values:
1 - normal
2 - minimize
3 - maximize
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oPanel = pMe.Pm("/Panel");
var nState = oPanel.State;
// Reading from the property
oPanel.State = 3;
// Writing into the property
Dim oPanel
Set oPanel = pMe.Pm("/Panel")
Dim nState
nState = oPanel.State
' Reading from the property
oPanel.State = 3
' Writing into the property