Graphics::GetClipBounds (RectF*) 方法 (gdiplusgraphics.h)
Graphics::GetClipBounds 方法會取得矩形,此矩形會封入此 Graphics 物件的裁剪區域。
語法
Status GetClipBounds(
RectF *rect
);
參數
rect
RectF 物件的指標,該物件會接收括住裁剪區域的矩形。
傳回值
如果方法成功,它會傳回 Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其他其中一個專案。
備註
世界轉換會套用至裁剪區域,然後計算封入矩形。
如果您未明確設定 Graphics 物件的裁剪區域,其裁剪區域是無限的。 當裁剪區域無限時, Graphics::GetClipBounds 會傳回大型矩形。 該矩形的 X 和 Y 數據成員是大型負數, 而 Width 和 Height 數據成員是大正數。
範例
下列範例會設定裁剪區域、取得括住裁剪區域的矩形,然後填滿矩形。
VOID Example_GetClipBounds2(HDC hdc)
{
Graphics graphics(hdc);
Region myRegion(RectF(25.0f, 25.0f, 100.0f, 50.0f));
RectF rect(40.0f, 60.0f, 100.0f, 50.0f);
Region gRegion;
RectF 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);}
規格需求
需求 | 值 |
---|---|
標頭 | gdiplusgraphics.h |