Description
Adds a polygon to this path.
Syntax
GpStatus WINGDIPAPI GdipAddPathRectangles(
GpPath *path,
GDIPCONST
GpRectF *rects,
INT count
);
PowerBASIC Syntax
DECLARE FUNCTION GdipAddPathRectangles ( _
BYVAL path AS
DWORD, _
BYREF rects AS
RectF, _
BYVAL count AS
LONG _
) AS LONG
Parameters
path
[in] Pointer to a GraphicsPath
object.
rects
[in] Pointer to an array of rectangles that
will be added to the path.
count
[in] Long integer value that specifies the
number of elements in the rects array.
|