GdipIsVisblePathPoint

 

 

Description

Determines whether a specified point lies in the area that is filled when this path is filled by a specified Graphics object.

Syntax

GpStatus WINGDIPAPI GdipIsVisiblePathPoint(

    GpPath* path,

    REAL x,

    REAL y,

    GpGraphics *graphics,

    BOOL *result

);

PowerBASIC Syntax

DECLARE FUNCTION GdipIsVisiblePathPoint ( _

    BYVAL path AS DWORD, _

    BYVAL x AS SINGLE, _

    BYVAL y AS SINGLE, _

    BYVAL graphics AS DWORD, _

    BYREF result AS LONG _

) AS LONG

Parameters

 

path

[in] Pointer to a GraphicsPath object.

x

[in] Simple precision value that specifies the x-coordinate of the point to be tested.

y

[in] Simple precision value that specifies the x-coordinate of the point to be tested.

graphics

[in] Pointer to a Graphics object that specifies a world-to-device transformation. If the value of this parameter is NULL, the test is done in world coordinates; otherwise, the test is done in device coordinates. The default value is NULL.

result

[out] Pointer to a variable that receives a boolean value indicating whether test point lies in the interior of this path (TRUE) or not (FALSE).

 

Valid HTML 4.01 Transitional