共用方式為


Graphics::D rawCurve (constPen*,constPointF*,INT) 方法 (gdiplusgraphics.h)

Graphics::D rawCurve方法會繪製基數曲線。

語法

Status DrawCurve(
  const Pen    *pen,
  const PointF *points,
  INT          count
);

參數

pen

用來繪製基數曲線的手寫筆指標。

points

PointF物件的陣列指標,指定基數曲線通過的座標。

count

整數,指定 陣列中的專案數目。

傳回值

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

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

備註

線段定義為連接基數曲線中兩個連續點的曲線。 每個區段的結束點是下一個線段的起點。

範例

下列範例會繪製基數曲線。

VOID Example_DrawCurve4(HDC hdc)
{
   Graphics graphics(hdc);

   // Define a Pen object and an array of Point objects.
   Pen greenPen(Color::Green, 3);
   PointF point1(100.0f, 100.0f);
   PointF point2(200.0f, 50.0f);
   PointF point3(400.0f, 10.0f);
   PointF point4(500.0f, 100.0f); 

   PointF curvePoints[4] = {
   point1,
   point2,
   point3,
   point4};

   PointF* pcurvePoints = curvePoints;

   // Draw the curve.
   graphics.DrawCurve(&greenPen, curvePoints, 4);

   //Draw the points in the curve.
   SolidBrush redBrush(Color::Red);
   graphics.FillEllipse(&redBrush, Rect(95, 95, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(195, 45, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(395, 5, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(495, 95, 10, 10));
}

需求

   
標頭 gdiplusgraphics.h

另請參閱

基本曲線

DrawClosedCurve 方法

繪製基數曲線

圖形

PointF