Windows.UI.Xaml.Media.PathGeometry.Figures

June 22, 2022 ยท View on GitHub

-description

Gets or sets the collection of PathFigure objects that describe the contents of a path.

-xaml-syntax

<PathGeometry>
  <PathGeometry.Figures>
    oneOrMoreFigures
  </PathGeometry.Figures>
</PathGeometry>

-xaml-values

oneOrMoreFigures
oneOrMoreFiguresOne or more PathFigure object elements.
## -property-value A collection of [PathFigure](pathfigure.md) objects that describe the contents of a path. Each individual [PathFigure](pathfigure.md) describes a shape.

-remarks

The main reason you'd want more than one PathFigure is if you want to consider the overall PathGeometry as one vector drawing that can "restart" the line in a different place, and use IsClosed to close up each figure.

-examples

-see-also

PathFigure, Path, IsClosed