Class PathGeometry

PathGeometry class

The path geometry. A PathGeometry element contains a set of path figures specified either with the Figures attribute or with a child PathFigure element. Producers MUST NOT specify the path figures of a geometry with both the Figures attribute and a child PathFigure element.

public class PathGeometry

Constructors

NameDescription
PathGeometry()Initializes a new instance of the PathGeometry class.

Properties

NameDescription
Figures { get; set; }Gets or sets the figures. Describes the geometry of the path.
FillRule { get; set; }Gets or sets the fill rule. Specifies how the intersecting areas of geometric shapes are combined to form a region. Valid values are EvenOdd and NonZero.
PathFigure { get; set; }Gets or sets the path figure. Specifies a set of one or more segment elements defining a closed region.
PathGeometryTransform { get; set; }Gets or sets the path geometry transform. Specifies the local matrix transformation that is applied to all child and descendant elements of the path geometry before it is used for filling, clipping, or stroking.
Transform { get; set; }Gets or sets the transform. Specifies the local matrix transformation that is applied to all child and descendant elements of the path geometry before it is used for filling, clipping, or stroking.

See Also