共用方式為


PathGradientBrush::SetCenterPoint(constPointF&) 方法 (gdipluspath.h)

PathGradientBrush::SetCenterPoint 方法會設定此路徑漸層筆刷的中心點。 根據預設,中心點位於筆刷界限路徑的心心,但您可以將中心點設定為路徑內外的任何位置。

語法

Status SetCenterPoint(
  const PointF & point
);

參數

point

指定中心點之 PointF 對象的參考。

傳回值

類型:狀態

如果方法成功,它會傳回Ok,這是 Status 列舉的元素。

如果方法失敗,它會傳回 Status 列舉的其他元素之一。

言論

例子

下列範例會根據橢圓形建立 PathGradientBrush 物件。 程序代碼會將中央色彩設定為藍色,並將界限上的色彩設定為青色。 根據預設,中心點會位於橢圓形 (100, 50), 但呼叫 PathGradientBrush::SetCenterPoint 方法會將中心點設定為 (180.5, 50.0)。

VOID Example_SetCenter(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 center point.
   pthGrBrush.SetCenterPoint(PointF(180.5f, 50.0f));

   // 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);

   graphics.FillRectangle(&pthGrBrush, 0, 0, 300, 300);
}

要求

要求 價值
標頭 gdipluspath.h

另請參閱

筆刷和填滿圖形

建立路徑漸層

使用色彩漸層填滿圖形

GraphicsPath

PathGradientBrush

PathGradientBrush::GetCenterColor

PathGradientBrush::GetCenterPoint 方法

PathGradientBrush::SetCenterColor