共用方式為


GraphicsPath::GetPointCount 方法 (gdipluspath.h)

GraphicsPath::GetPointCount方法會取得此路徑資料點陣列中的點數。 這與路徑點型別陣列中的類型數目相同。

Syntax

INT GetPointCount();

傳回值

類型: INT

這個方法會傳回路徑資料點陣列中的點數。

備註

GraphicsPath物件具有點陣列和類型的陣列。 型別陣列中的每個元素都是位元組,指定點類型,以及點陣列中對應元素的一組旗標。 PathPointType列舉中會列出可能的點類型和旗標。

範例

下列範例會建立一個省略號和一行的路徑。 程式碼會呼叫 GraphicsPath::GetPointCount 方法,以判斷儲存在路徑中的資料點數目。 然後程式碼會呼叫 GraphicsPath::GetPathPoints 方法來擷取這些資料點。 最後,程式碼會在每個資料點填入一個小橢圓形。

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

   // Create a path that has one ellipse and one line.
   GraphicsPath path;
   path.AddEllipse(10, 10, 200, 100);
   path.AddLine(220, 120, 300, 160);

   // Find out how many data points are stored in the path.
   INT count = path.GetPointCount();

   // Draw the path points.
   SolidBrush redBrush(Color(255, 255, 0, 0));
   PointF* points = new PointF[count];
   path.GetPathPoints(points, count);

   for(INT j = 0; j < count; ++j)
      graphics.FillEllipse(
         &redBrush, 
         points[j].X - 3.0f, 
         points[j].Y - 3.0f, 
         6.0f, 
         6.0f); 

   delete [] points; 
} 

需求

   
最低支援的用戶端 Windows XP、Windows 2000 Professional [僅限傳統型應用程式]
最低支援的伺服器 Windows 2000 Server [僅限傳統型應用程式]
目標平台 Windows
標頭 gdipluspath.h (包含 Gdiplus.h)
程式庫 Gdiplus.lib
Dll Gdiplus.dll

另請參閱

使用區域裁剪

建構和繪製路徑

建立路徑漸層

GetPathPoints 方法

GraphicsPath

GraphicsPath::GetPathData

GraphicsPath::GetPathTypes

PathData

PathPointType

路徑