[]
Represents a complex shape that may be composed of arcs, curves, ellipses, lines, and rectangles.
public interface IGeometry
Public Interface IGeometry
Name | Description |
---|---|
FillMode | Gets the fill mode of this geometry. |
Stroke | Gets or sets a value indicating whether draw the outline of this geometry. |
Name | Description |
---|---|
ArcTo(double, double, double, double) | Draws an arc with the specified parameters from the current pen position to the new point specified |
Close() | Ends the series of lines and curves in the creation path of a custom geometric shape. |
CubicBezierTo(Point, Point, Point) | Draw a cubic Bezier curve along the specified points. |
LineTo(Point) | Draws a line from the current position to the specified point. |
MoveTo(Point) | Updates the current position to the specified point. |
QuadraticBezierTo(Point, Point) | Draw a quadratic Bezier curve along the specified points. |