IShape AddLine( System.double beginX, System.double beginY, System.double endX, System.double endY )
function AddLine( beginX: System.Double; beginY: System.Double; endX: System.Double; endY: System.Double ): IShape;
function AddLine( beginX : System.double, beginY : System.double, endX : System.double, endY : System.double ) : IShape;
IShape* AddLine( System.double beginX, System.double beginY, System.double endX, System.double endY )
IShape^ AddLine( System.double beginX, System.double beginY, System.double endX, System.double endY )
Parameters
- beginX
- The beginning X position in points.
- beginY
- The beginning Y position in points.
- endX
- The ending X position in points.
- endY
- The ending Y position in points.
Return Value
A shape object representing the newly created line.