GraphicsPath::GetPointCount-Methode (gdipluspath.h)
Die GraphicsPath::GetPointCount-Methode ruft die Anzahl der Punkte im Datenpunktarray dieses Pfads ab. Dies entspricht der Anzahl von Typen im Array von Punkttypen des Pfads.
Syntax
INT GetPointCount();
Rückgabewert
Typ: INT
Diese Methode gibt die Anzahl der Punkte im Datenpunktarray des Pfads zurück.
Hinweise
Ein GraphicsPath-Objekt verfügt über ein Array von Punkten und ein Array von Typen. Jedes Element im Array von Typen ist ein Byte, das den Punkttyp und einen Satz von Flags für das entsprechende Element im Array von Punkten angibt. Mögliche Punkttypen und Flags werden in der PathPointType-Enumeration aufgeführt.
Beispiele
Im folgenden Beispiel wird ein Pfad mit einer Ellipse und einer Zeile erstellt. Der Code ruft die GraphicsPath::GetPointCount-Methode auf, um die Anzahl der im Pfad gespeicherten Datenpunkte zu bestimmen. Anschließend ruft der Code die GraphicsPath::GetPathPoints-Methode auf, um diese Datenpunkte abzurufen. Schließlich füllt der Code eine kleine Ellipse an jedem der Datenpunkte aus.
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;
}
Anforderungen
Unterstützte Mindestversion (Client) | Windows XP, Windows 2000 Professional [nur Desktop-Apps] |
Unterstützte Mindestversion (Server) | Windows 2000 Server [nur Desktop-Apps] |
Zielplattform | Windows |
Kopfzeile | gdipluspath.h (include Gdiplus.h) |
Bibliothek | Gdiplus.lib |
DLL | Gdiplus.dll |