[]
        
(Showing Draft Content)

GrapeCity.Documents.Drawing.IPathExt

Class IPathExt

Namespace
GrapeCity.Documents.Drawing
Assembly
GcDocs.Imaging.dll

Contains extension methods for IPath.

public static class IPathExt
Inheritance
object
IPathExt
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Methods

AddEllipse(IPath, RectangleF, FigureEnd)

Adds ellipse figure to the path. Note! Method calls BeginFigure(PointF) and EndFigure(FigureEnd), figureEnd used as parameter for EndFigure(FigureEnd).

public static void AddEllipse(this IPath path, RectangleF bounds, FigureEnd figureEnd)

Parameters

path IPath

The IPath.

bounds System.Drawing.RectangleF

The ellipse's bounds.

figureEnd FigureEnd

The parameter of called EndFigure(FigureEnd).

AddRect(IPath, RectangleF, FigureEnd)

Adds rect figure to the path. Note! Method calls BeginFigure(PointF) and EndFigure(FigureEnd), figureEnd used as parameter for EndFigure(FigureEnd).

public static void AddRect(this IPath path, RectangleF bounds, FigureEnd figureEnd)

Parameters

path IPath

The IPath.

bounds System.Drawing.RectangleF

The rectangle bounds.

figureEnd FigureEnd

The parameter of called EndFigure(FigureEnd).