Title - property of the PmaReport object
Description:
Window title.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Window title" configurator of this object.
Macro expression can be used for input (
$.text ..) (it is evaluated while setting a property).
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oReport = pMe.Pm("/Report");
var sTitle = oReport.Title;
// Reading from the property
oReport.Title = "Title report";
// Writing into the property
Dim oReport
Set oReport = pMe.Pm("/Report")
Dim sTitle
sTitle = oReport.Title
' Reading from the property
oReport.Title = "Title report"
' Writing into the property