A series of connected lines and curves.
Hierarchy
System.Object
    WebSupergoo.ImageGlue8.GraphicsPath
Interfaces
System.IDisposable
Notes

This class is sealed. It cannot be derived from.

Methods
Method Description
GraphicsPath GraphicsPath constructor.
AddArc Adds an arc representing a segment of an ellipse.
AddBezier Adds a Bezier curve.
AddClosedCurve Adds a closed spline curve.
AddCurve Adds a spline curve.
AddEllipse Adds an ellipse.
AddLine Adds a line.
AddPie Draws a pie shape specified using an ellipse specified by a coordinate pair, a width, a height, and two radial lines.
AddPolygon Adds a polygon to this path.
AddRectangle Adds a rectangle to this path.
AddString Adds a string.
ClearMarkers Clears markers.
Clone Makes a deep copy of the GraphicsPath.
CloseAllFigures Closes all figures.
CloseFigure Closes figure. Any existing path is closed by joining the last point to the first.
Dispose Disposing this object does nothing. The interface is present simply for compatibility with System.Drawing code.
Flatten Flattens the path converting curves into lines or flatter bezier segments.
GetBounds Gets the bounds.
GetLastPoint Gets the last point.
IsVisible Is visible.
Reset Resets the path. Clears the points and sets the fill mode to alternate.
Reverse Reverses the points in the path.
SetMarkers Sets markers.
StartFigure Starts figure. Any existing path is not closed.
Transform Transforms the path.
Widen Widens the path. The result covers the same area as would have been covered if the path had been stroked using the supplied pen.
Properties
Property Description
FillMode Gets or sets a value which determines the way in which a closed path is filled.
PathData Gets the path data.
PathPoints Gets the points in the path. The points in this array should be treated as read only. To update the values you should modify the array and then call new GraphicsPath, passing in the updated points and types.
PathTypes Gets the point types in the path. Cast the byte value to a PathPointType enum for a more descriptive value. The types in this array should be treated as read only. To update the values you should modify the array and then call new GraphicsPath, passing in the updated points and types.
PointCount Gets the number of elements in the path
Example

None.