Region::IsVisible(constPoint&,constGraphics*) メソッド (gdiplusheaders.h)
Region::IsVisible メソッドは、ポイントがこの領域内にあるかどうかを判断します。
構文
BOOL IsVisible(
[in, ref] const Point & point,
[in] const Graphics *g
);
パラメーター
[in, ref] point
型: const Point
テストするポイントへの参照。
[in] g
型: const Graphics*
省略可能。 この領域とポイントのデバイス座標を計算するために必要なワールド変換とページ変換を含む Graphics オブジェクトへのポインター。 既定値は NULL です。
戻り値
種類: BOOL
ポイントがこの領域内にある場合、このメソッドは TRUE を返します。それ以外の場合は、 FALSE を返します。
注釈
メモ リージョンには、その境界線が含まれています。
例
次の例では、パスからリージョンを作成し、ポイントがリージョン内にあるかどうかを調べます。
VOID Example_IsVisiblePoint(HDC hdc)
{
Graphics graphics(hdc);
Point points[] = {
Point(110, 20),
Point(120, 30),
Point(100, 60),
Point(120, 70),
Point(150, 60),
Point(140, 10)};
GraphicsPath path;
SolidBrush solidBrush(Color(255, 255, 0, 0));
path.AddClosedCurve(points, 6);
// Create a region from a path.
Region pathRegion(&path);
graphics.FillRegion(&solidBrush, &pathRegion);
// Check to see whether a point is in the region.
Point testPoint(125, 30);
if(pathRegion.IsVisible(testPoint, &graphics))
{
// The test point is in the region.
}
// Fill a small circle centered at the test point.
SolidBrush brush(Color(255, 0, 0, 0));
graphics.FillEllipse(&brush, testPoint.X - 4, testPoint.Y - 4, 8, 8);
}
要件
要件 | 値 |
---|---|
サポートされている最小のクライアント | Windows XP、Windows 2000 Professional [デスクトップ アプリのみ] |
サポートされている最小のサーバー | Windows 2000 Server [デスクトップ アプリのみ] |
対象プラットフォーム | Windows |
ヘッダー | gdiplusheaders.h (Gdiplus.h を含む) |
Library | Gdiplus.lib |
[DLL] | Gdiplus.dll |