|
Description
Draws a sequence of lines and curves defined by
a GraphicsPath object.
Syntax
GpStatus WINGDIPAPI GdipDrawPath(
GpGraphics
*graphics,
GpPen *pen,
GpPath *path
);
PowerBASIC Syntax
DECLARE FUNCTION GdipDrawPath ( _
BYVAL graphics
AS DWORD, _
BYVAL pen AS
DWORD, _
BYVAL path AS
DWORD _
) AS LONG
Parameters
graphics
[in] Pointer to the
Graphics
object.
pen
[in] Pointer to a pen that is used to draw the
path.
path
[in] Pointer to a GraphicsPath
object that specifies the sequence of lines and curves that make up the
path.
|