ReturnValue - property of the PmaPanel object
Syntax:
Variant ReturnValue
Note:
Property access
for read and write.
The property value is used as the return value of the
Pm.CreateView method.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oPanel = pMe.Pm("/Panel");
oPanel.ReturnValue = Pm.Array1("a", "b", "c");
Dim oPanel
Set oPanel = pMe.Pm("/Panel")
oPanel.ReturnValue = Pm.Array1("a", "b", "c")