Graphics::GetClipBounds(Rect*) メソッド (gdiplusgraphics.h)
Graphics::GetClipBounds メソッドは、この Graphics オブジェクトのクリッピング領域を囲む四角形を取得します。
構文
Status GetClipBounds(
[out] Rect *rect
);
パラメーター
[out] rect
型: Rect*
クリッピング領域を囲む四角形を受け取る Rect オブジェクトへのポインター。
戻り値
種類: 状態
メソッドが成功した場合は、 Status 列挙体の要素である Ok を返します。
メソッドが失敗した場合は、 Status 列挙体の他の要素のいずれかを返します。
注釈
ワールド変換がクリッピング領域に適用され、外側の四角形が計算されます。
Graphics オブジェクトのクリッピング領域を明示的に設定しない場合、そのクリッピング領域は無限になります。 クリッピング領域が無限の場合、 Graphics::GetClipBounds は 大きな四角形を返します。 その四角形の X および Y データ メンバーは負の数が大きく、 Width と Height のデータ メンバーは大きな正の数値です。
例
次の例では、クリッピング領域を設定し、クリッピング領域を囲む四角形を取得し、四角形を塗りつぶします。
VOID Example_GetClipBounds(HDC hdc)
{
Graphics graphics(hdc);
Region myRegion(Rect(25, 25, 100, 50));
Rect rect(40, 60, 100, 50);
Region gRegion;
Rect enclosingRect;
SolidBrush blueBrush(Color(100, 0, 0, 255));
Pen greenPen(Color(255, 0, 255, 0), 1.5f);
// Modify the region by using a rectangle.
myRegion.Union(rect);
// Set the clipping region of the graphics object.
graphics.SetClip(&myRegion);
// Now, get the clipping region, and fill it.
graphics.GetClip(&gRegion);
graphics.FillRegion(&blueBrush, &gRegion);
// Get a rectangle that encloses the clipping region, and draw the enclosing
// rectangle.
graphics.GetClipBounds(&enclosingRect);
graphics.ResetClip();
graphics.DrawRectangle(&greenPen, enclosingRect);}
要件
要件 | 値 |
---|---|
サポートされている最小のクライアント | Windows XP、Windows 2000 Professional [デスクトップ アプリのみ] |
サポートされている最小のサーバー | Windows 2000 Server [デスクトップ アプリのみ] |
対象プラットフォーム | Windows |
ヘッダー | gdiplusgraphics.h (Gdiplus.h を含む) |
Library | Gdiplus.lib |
[DLL] | Gdiplus.dll |