Description
Adds
a path to this path.
Syntax
GpStatus WINGDIPAPI GdipAddPathPath(
GpPath *path,
GDIPCONST
GpPath* addingPath,
BOOL connect
);
PowerBASIC
Syntax
DECLARE FUNCTION GdipAddPathPath ( _
BYVAL path AS
DWORD, _
BYVAL
addingPath AS DWORD, _
BYVAL pConnect
AS LONG _
) AS LONG
Parameters
path
[in] Pointer to a GraphicsPath
object.
addingPath
[in] Pointer to the path to be added.
connect
[in] Boolean value that specifies whether the
first figure in the added path is part of the last figure in this path.
TRUE
Specifies that (if possible) the first figure
in the added path is part of the last figure in this path.
FALSE
Specifies that the first figure in the added
path is separate from the last figure in this path.
|