Graphics::FillPie (constBrush*,REAL,REAL,REAL) 方法 (gdiplusgraphics.h)
Graphics::FillPie 方法會使用筆刷來填滿餅圖的內部。
語法
Status FillPie(
[in] const Brush *brush,
[in] REAL x,
[in] REAL y,
[in] REAL width,
[in] REAL height,
[in] REAL startAngle,
[in] REAL sweepAngle
);
參數
[in] brush
類型: const Brush*
用於繪製餅圖內部的 Brush 物件指標。
[in] x
類型: REAL
實數,指定周框左上角的 x 座標,其系結橢圓形。 橢圓形的弧形部分是餅圖的弧形。
[in] y
類型: REAL
實數,指定周框左上角的 Y 座標,其系結橢圓形。
[in] width
類型: REAL
實數,指定限定橢圓形的矩形寬度。
[in] height
類型: REAL
實數,指定限定橢圓形的矩形高度。
[in] startAngle
類型: REAL
指定 X 軸與餅圖弧形起點之間角度的實數。
[in] sweepAngle
類型: REAL
實數,指定餅圖弧形的起點與終點之間的角度,以度為單位。
傳回值
類型: 狀態
如果方法成功,它會傳回Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其中一個其他元素。
備註
餅圖是橢圓形內部的一部分, (它是由橢圓形曲線所系結,而兩條星形線) 。 startAngle 和 sweepAngle 會指定要使用的省略號部分。
範例
下列範例會定義餅圖,然後填滿它。
VOID Example_FillPie4(HDC hdc)
{
Graphics graphics(hdc);
// Create a SolidBrush object.
SolidBrush blackBrush(Color(255, 0, 0, 0));
// Define the pie shape.
REAL x = 0.0f;
REAL y = 2.0f;
REAL width = 200.8f;
REAL height = 100.1f;
REAL startAngle = 0.0f;
REAL sweepAngle = 45.7f;
// Fill the pie.
graphics.FillPie(&blackBrush, x, y, width, height, startAngle, sweepAngle);
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | Windows XP、Windows 2000 Professional [僅限傳統型應用程式] |
最低支援的伺服器 | Windows 2000 Server [僅限傳統型應用程式] |
目標平台 | Windows |
標頭 | gdiplusgraphics.h (包含 Gdiplus.h) |
程式庫 | Gdiplus.lib |
Dll | Gdiplus.dll |