GdipGetPathTypes

 

 

Description

Gets this path's array of points. The array contains the endpoints and control points of the lines and Bézier splines that are used to draw the path.

Syntax

GpStatus WINGDIPAPI GdipGetPathTypes(

    GpPath* path,

    BYTE* types,

    INT count

);

PowerBASIC Syntax

DECLARE FUNCTION GdipGetPathTypes ( _

    BYVAL path AS DWORD, _

    BYREF types AS ANY, _

    BYVAL count AS LONG _

) AS LONG

Parameters

 

path

[in] Pointer to a GraphicsPath object.

types

[out] Pointer to an array that receives the point types. You must allocate memory for this array. You can call the GdipGetPointCount method to determine the required size of the array.

count

[in] Long integer values that specifies the number of elements in the types array. Set this parameter equal to the return value of the GdipGetPointCount function.

 

Valid HTML 4.01 Transitional