Graphics::ExcludeClip (constRectF&) 方法 (gdiplusgraphics.h)
Graphics::ExcludeClip 方法會將裁剪區域更新為本身未與指定矩形交集的部分。
語法
Status ExcludeClip(
const RectF & rect
);
參數
rect
用來更新裁剪區域的矩形參考。
傳回值
如果方法成功,它會傳回 Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其中一個其他元素。
備註
範例
下列範例會使用矩形來更新裁剪區域,然後繪製示範已更新裁剪區域的矩形。
VOID Example_ExcludeClip2(HDC hdc)
{
Graphics graphics(hdc);
// Create a RectF object, and set the clipping region to its exclusion.
RectF excludeRect(100.0f, 100.0f, 200.0f, 200.0f);
graphics.ExcludeClip(excludeRect);
// Fill a rectangle to demonstrate the clipping region.
graphics.FillRectangle(&SolidBrush((255, 0, 0, 255)), 0, 0, 600, 600);
}
規格需求
標頭 | gdiplusgraphics.h |