Y - property of the PmgObject object
Description:
Y-coordinate of the left upper corner of the Pmg object relative to superior Pmg object.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Y" configurator of this object.
X=0, Y=0 represents the left upper corner of the parent
Pmg object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oObject = pMe.Items("/Txt0");
var nY = oObject.Y;
// Reading from the property
oObject.Y = 200;
// Writing into the property
Dim oObject
Set oObject = pMe.Items("/Txt0")
Dim nY
nY = oObject.Y
' Reading from the property
oObject.Y = 200
' Writing into the property