GdipPathIterCopyData

 

 

Description

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

Syntax

GpStatus WINGDIPAPI GdipPathIterCopyData(

    GpPathIterator* iterator,

    INT* resultCount,

    GpPointF* points,

    BYTE* types,

    INT startIndex,

    INT endIndex

);

PowerBASIC Syntax

DECLARE FUNCTION GdipPathIterCopyData ( _

    BYVAL iterator AS DWORD, _

    BYREF resultCount AS LONG, _

    BYREF pPoints AS PointF, _

    BYREF types AS ANY, _

    BYVAL startIndex AS LONG, _

    BYVAL endIndex 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 a subset of the path's data points.

types

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

startIndex

[in] Long integer value that specifies the starting index of the points and types to be copied.

endIndex

[in] Long integer value that specifies the ending index of the points and types to be copied.

 

Valid HTML 4.01 Transitional