GdipPathIterEnumerate

 

 

Description

Copies the path's data points to a PointF array and copies the path's point types to a BYTE array.

Syntax

GpStatus WINGDIPAPI GdipPathIterEnumerate(

    GpPathIterator* iterator,

    INT* resultCount,

    GpPointF *points,

    BYTE *types,

    INT count

);

PowerBASIC Syntax

DECLARE FUNCTION GdipPathIterEnumerate ( _

    BYVAL iterator AS DWORD, _

    BYREF resultCount AS LONG, _

    BYREF pPoints AS PointF, _

    BYREF types AS ANY, _

    BYVAL count AS LONG _

) AS LONG

Parameters

 

iterator

[in] Pointer to the GraphicsPathIterator object.

resultCount

[out] Number of points copied. This is the same as the number of types copied.

points

[out] Pointer to an array that receives the path's data points.

types

[out] Pointer to an array that receives the path's point types.

count

[in] Lon integer value that specifies the number of elements in the points array. This is the same as the number of elements in the types array.

 

Valid HTML 4.01 Transitional