PathGradientBrush::GetCenterPoint(PointF*) 方法(gdipluspath.h)
PathGradientBrush::GetCenterPoint 方法會取得此路徑漸層筆刷的中心點。
語法
Status GetCenterPoint(
PointF *point
);
參數
point
接收中心點之 PointF 物件的指標。
傳回值
類型:狀態
如果方法成功,它會傳回Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其他元素之一。
言論
根據預設,PathGradientBrush 物件的中心點位於筆刷界限路徑的中心點,但是您可以呼叫 pathGradientBrush 物件的 SetCenterPoint 方法,將中心點設定為路徑內外的任何位置。
例子
下列範例示範 PathGradientBrush 類別的數種方法,包括 PathGradientBrush::GetCenterPoint 和 PathGradientBrush::SetCenterColor。 程序代碼會建立 PathGradientBrush 對象,然後設定筆刷的中心色彩和界限色彩。 程序代碼會呼叫 PathGradientBrush::GetCenterPoint 方法來判斷路徑漸層的中心點,然後將線條從原點繪製到該中心點。
VOID Example_GetCenterPoint(HDC hdc)
{
Graphics graphics(hdc);
// Create a path that consists of a single ellipse.
GraphicsPath path;
path.AddEllipse(0, 0, 200, 100);
// Use the path to construct a brush.
PathGradientBrush pthGrBrush(&path);
// Set the color at the center of the path to blue.
pthGrBrush.SetCenterColor(Color(255, 0, 0, 255));
// Set the color along the entire boundary of the path to aqua.
Color colors[] = {Color(255, 0, 255, 255)};
INT count = 1;
pthGrBrush.SetSurroundColors(colors, &count);
// Fill the ellipse with the path gradient brush.
graphics.FillEllipse(&pthGrBrush, 0, 0, 200, 100);
// Obtain information about the path gradient brush.
PointF centerPoint;
pthGrBrush.GetCenterPoint(¢erPoint);
// Draw a line from the origin to the center of the ellipse.
Pen pen(Color(255, 0, 255, 0));
graphics.DrawLine(&pen, PointF(0, 0), centerPoint);
}
要求
要求 | 價值 |
---|---|
標頭 | gdipluspath.h |
另請參閱
PathGradientBrush::GetCenterColor