GdipPathIterNextSubpathPath

 

 

Description

Gets the the next figure (subpath) from this iterator's associated path.

Syntax

GpStatus WINGDIPAPI GdipPathIterNextSubpathPath(

    GpPathIterator* iterator,

    INT* resultCount,

    GpPath* path,

    BOOL* isClosed

);

PowerBASIC Syntax

DECLARE FUNCTION GdipPathIterNextSubpathPath ( _

    BYVAL iterator AS DWORD, _

    BYREF resultCount AS LONG, _

    BYVAL path AS DWORD, _

    BYREF IsClosed AS LONG _

) AS LONG

Parameters

 

iterator

[in] Pointer to the GraphicsPathIterator object.

resultCount

[out] Number of data points in the retrieved figure. If there are no more figures to retrieve, this method returns 0.

path

[out] Pointer to a GraphicsPath object. This method sets the data points of this GraphicsPath object to match the data points of the retrieved figure.

isClosed

[out] Pointer to a LONG that receives a boolean value that indicates whether the obtained figure is closed. If the figure is closed, the received value is TRUE; otherwise, the received value is FALSE.

 

Valid HTML 4.01 Transitional