Methods - property of the PmgObject object
Description:
Returns object, by which the
designer methods of the
Pmg object defined on the "
Methods" tab are accessed.
Note:
Property access for
read only.
The property itself cannot be changed (is "read only"), but the called method can change anything by its algorithm.
Designer methods of the
Pmg object always belongs to this object and if we want to call them, then we can do it only through this object.
Example:
Example of an access to methods with names Init and Close (x and y are parameters of the method Init)
JavaScriptVBScriptSelect and copy to clipboard
var oObject = pMe.Items("/Text0");
oObject.Methods.Init(x, y);
oObject.Methods.Close();
Dim oObject
Set oObject = pMe.Items("/Text0")
oObject.Methods.Init x, y
oObject.Methods.Close