Class XpsPathGeometry

XpsPathGeometry class

Class incapsulating PathGeometry property element features. This element contains a set of path figures specified either with the Figures attribute or with a child PathFigure element.

public sealed class XpsPathGeometry : XpsArray<XpsPathFigure>

Properties

NameDescription
Count { get; }
FillRule { get; set; }Returns/sets the value specifying how the intersecting areas of geometric shapes are combined to form a region.
Item { get; }
PathFigures { get; }Returns list of child path figures.
Transform { get; set; }Returns/sets the affine transformation matrix establishing 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.

Methods

NameDescription
Add(XpsPathFigure)
AddSegment(XpsPathSegment)Adds a path segment to the list of child segments of the last pah figure.
Clone()Clones this path geometry.
Insert(int, XpsPathFigure)
InsertSegment(int, XpsPathSegment)Inserts a path segment to the list of child segments of the last path figure at index position.
Remove(XpsPathFigure)
RemoveAt(int)
RemoveSegment(XpsPathSegment)Removes a path segment from the list of child segments of the last path figure.
RemoveSegmentAt(int)Removes a path segment from the list of child segments of the last path figure at index position.

See Also