Title - property of the PmaPanel object
Note:
Property access
for read and write.
The default value of this property is defined in the "
Panel title" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oPanel = pMe.Pm("/Panel");
var sTitle = oPanel.Title;
// Reading from the property
oPanel.Title = "Title panel";
// Writing into the property
Dim oPanel, sTitle
Set oPanel = pMe.Pm("/Panel")
sTitle = oPanel.Title
' Reading from the property
oPanel.Title = "Title panel"
' Writing into the property