X - property of the PmgObject object
Description:
X-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 "
X" 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 nX = oObject.X;
// Reading from the property
oObject.X = 200;
// Writing into the property
Dim oObject
Set oObject = pMe.Items("/Txt0")
Dim nX
nX = oObject.X
' Reading from the property
oObject.X = 200
' Writing into the property