Search
ShapeTemplate.AddOutlineStraight Method
See Also
 



Adds a new straight segment to shape's outline, starting from the point specified as argument.

 Syntax

VB6  Copy Code

Public Sub AddOutlineStraight( _
    ByVal x As Integer, _
    ByVal y As Integer _
)

C++  Copy Code

public:
void AddOutlineStraight (
    short x,
    short y
)

 Parameters

x
A x-coordinate, defined as percent of shape full width.
y
A y-coordinate, defined as percent of shape full height.

 Remarks

The segment ends at the first point of the next part added to the outline, or at the first point of the outline if CompleteDefinition is called next.

 See Also