GraphicsPath::AddEllipse(constRect&)-Methode (gdipluspath.h)
Die GraphicsPath::AddEllipse-Methode fügt diesem Pfad eine Ellipse hinzu.
Syntax
Status AddEllipse(
[in, ref] const Rect & rect
);
Parameter
[in, ref] rect
Typ: const Rect
Verweis auf ein Rechteck, das die Ellipse umgrenzt.
Rückgabewert
Typ: Status
Wenn die Methode erfolgreich ist, gibt sie OK zurück, ein Element der Status-Enumeration .
Wenn die Methode fehlschlägt, gibt sie eines der anderen Elemente der Status-Enumeration zurück.
Hinweise
Ein GraphicsPath-Objekt speichert eine Ellipse als Sequenz von vier verbundenen Bézier-Splines. Das GraphicsPath-Objekt speichert die obere linke Ecke, Breite und Höhe des begrenzungsenden Rechtecks der Ellipse nicht.
Beispiele
Das folgende Beispiel erstellt einen GraphicsPath-Objektpfad, fügt dem Pfad eine Auslassungspunkte hinzu und zeichnet dann den Pfad.
VOID Example_AddEllipse(HDC hdc)
{
Graphics graphics(hdc);
Rect rect(20, 20, 200, 100);
GraphicsPath path;
path.AddEllipse(rect);
// Draw the path.
Pen pen(Color(255, 255, 0, 0));
graphics.DrawPath(&pen, &path);
}
Anforderungen
Anforderung | Wert |
---|---|
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 |