Direction - property of the PmgLine object
Description:
Path drawing direction.
Values:
0 - Drawing from the upper left corner to the lower right corner of the Pmg object
1 - Drawing from the upper right corner to the lower left corner of the Pmg object
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oLine = pMe.Items("/Line");
var nDirection = oLine.Direction; //reading
oLine.Direction = 1; //writing
Dim oLine, nDirection
Set oLine = pMe.Items("/Line")
nDirection = oLine.Direction 'reading
oLine.Direction = 1 'writing