GdipAddPathLine2I

 

 

Description

Adds a cardinal spline to the current figure of this path.

Syntax

GpStatus WINGDIPAPI GdipAddPathLine2I(

    GpPath *path,

    GDIPCONST GpPoint *points,

    INT count

);

PowerBASIC Syntax

DECLARE FUNCTION GdipAddPathLine2I ( _

    BYVAL path AS DWORD, _

    BYREF pPoints AS PointL, _

    BYVAL count AS LONG _

) AS LONG

Parameters

 

path

[in] Pointer to a GraphicsPath object.

points

[in] Pointer to an array of points that specify the starting and ending points of the lines. The first point in the array is the starting point of the first line, and the last point in the array is the ending point of the last line. Each of the other points serves as ending point for one line and starting point for the next line.

count

[in] Long integer value that specifies the number of elements in the points array.

 

Valid HTML 4.01 Transitional