Graphics::IsVisible(constPoint&) method (gdiplusgraphics.h)

The Graphics::IsVisible method determines whether the specified point is inside the visible clipping region of this Graphics object. The visible clipping region is the intersection of the clipping region of this Graphics object and the clipping region of the window.

Syntax

BOOL IsVisible(
  [in] const Point & point
);

Parameters

[in] point

Type: const Point&

Reference to a point to be tested to see whether it is inside the visible clipping region.

Return value

Type: BOOL

If the specified point is inside the visible clipping region, this method returns TRUE; otherwise, it returns FALSE.

Requirements

Requirement Value
Minimum supported client Windows XP, Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header gdiplusgraphics.h (include Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

See also

Graphics

Graphics::IsVisibleClipEmpty

Point