ViewerTitle - property of the PmgRoot object
Description:
Open panel title.
Syntax:
String ViewerTitle
Note:
Property access
for read and write.
The default value of this property is defined in the "
Panel title" configurator of the
PmaPanel object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oRoot = pMe.Root;
var sTitle = oRoot.ViewerTitle;
// Reading from the property
oRoot.ViewerTitle = "Viewer title";
// Writing into the property
Dim oRoot
Set oRoot = pMe.Root
Dim sTitle
sTitle = oRoot.ViewerTitle
' Reading from the property
oRoot.ViewerTitle = "Viewer title"
' Writing into the property