Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.18 KB

pathgeometry_figures.md

File metadata and controls

40 lines (29 loc) · 1.18 KB
-api-id -api-type
P:Windows.UI.Xaml.Media.PathGeometry.Figures
winrt property

Windows.UI.Xaml.Media.PathGeometry.Figures

-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