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 from the property
oLine.Direction = 1;
// Writing into the property
Dim oLine
Set oLine = pMe.Items("/Line")
Dim nDirection
nDirection = oLine.Direction
' Reading from the property
oLine.Direction = 1
' Writing into the property