Search
FlowChart.CreateDecorationLine Method
See Also
 



Creates a new decoration line.

 Syntax

VB6  Copy Code

Public Function CreateDecorationLine( _
    ByVal x1 As Long, _
    ByVal y1 As Long, _
    ByVal x2 As Long, _
    ByVal y2 As Long _
) As DecorationLine

C++  Copy Code

public:
DecorationLine* CreateDecorationLine (
    int x1,
    int y1,
    int x2,
    int y2
)

 Parameters

x1
The horizontal position of the first point.
y1
The vertical position of the first point.
x2
The horizontal position of the second point.
y2
The vertical position of the second point.

 Return Value

A reference to a DecorationLine object.

 See Also