GetPanelInfo - method of the PmgRoot object
Description:
Information regarding the
PmaPanel object that contains this object (name, path, ...).
Syntax:
String GetPanelInfo(Long nType)
Parameters:
nType | (Long) Type of requested information.
1 - Object name (the same value as Name property of the PmaPanel object).
|
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oRoot = pMe.Root;
var sName = oRoot.GetPanelInfo(1);
var sPath = oRoot.GetPanelInfo(2);
Dim oRoot
Set oRoot = pMe.Root
Dim sName
sName = oRoot.GetPanelInfo(1)
Dim sPath
sPath = oRoot.GetPanelInfo(2)