次の方法で共有


Region::IsVisible(constRect&,constGraphics*) メソッド (gdiplusheaders.h)

Region::IsVisible メソッドは、四角形がこの領域と交差するかどうかを決定します。

構文

BOOL IsVisible(
  [in, ref] const Rect &   rect,
  [in]      const Graphics *g
);

パラメーター

[in, ref] rect

型: const Rect

テストする四角形への参照。

[in] g

型: const Graphics*

省略可能。 この領域と四角形のデバイス座標を計算するために必要なワールド変換とページ変換を含む Graphics オブジェクトへのポインター。 既定値は NULL です。

戻り値

種類: BOOL

四角形がこの領域と交差する場合、このメソッドは TRUE を返します。それ以外の場合は、 FALSE を返します。

注釈

メモ リージョンには、その境界線が含まれています。
 

次の例では、パスから領域を作成し、四角形が領域と交差するかどうかをテストします。

VOID Example_IsVisibleRect(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 rectangle intersects the region.
   Rect testRect(65, 25, 70, 30);

   if(pathRegion.IsVisible(testRect, &graphics))
   {
      // All or part of the rectangle is in the region.
   }

   // Draw the test rectangle.
   Pen pen(Color(255, 0, 0, 0));
   graphics.DrawRectangle(&pen, testRect);
}

要件

   
サポートされている最小のクライアント Windows XP、Windows 2000 Professional [デスクトップ アプリのみ]
サポートされている最小のサーバー Windows 2000 Server [デスクトップ アプリのみ]
対象プラットフォーム Windows
ヘッダー gdiplusheaders.h (Gdiplus.h を含む)
Library Gdiplus.lib
[DLL] Gdiplus.dll

こちらもご覧ください

グラフィックス

Point

[リージョン]