Gets or sets the collection of PathFigure objects that describe the path's contents.
Namespace:
System.Windows.Media
Assembly:
System.Windows (in System.Windows.dll)
Visual Basic (Declaration)
Public Property Figures As PathFigureCollection
Get
Set
Dim instance As PathGeometry
Dim value As PathFigureCollection
value = instance.Figures
instance.Figures = value
public PathFigureCollection Figures { get; set; }
XAML Property Element Usage
<PathGeometry>
<PathGeometry.Figures>
oneOrMoreFigures
</PathGeometry.Figures>
</PathGeometry>
<PathGeometry Figures="moveAndDrawCommands"/>
Dependency property identifier field: FiguresProperty
The XAML syntax for Figures is an example of an implicit collection syntax, where you can omit the PathFigureCollection object element, as well as the <PathGeometry.Figures> property element. Instead, you generally include one or more PathFigure object elements as child elements of a PathGeometry. For more information about XAML implicit collection syntax, see XAML Overview. (Explicitly including a PathFigureCollection object element is permissible XAML syntax, and it might be useful if you intend to name the collection in XAML and manipulate its contents through script later. Including the <PathGeometry.Figures> property element might also be useful for markup clarity, because of the nested Figures and Segments collections found in a typical complex PathGeometry.)
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Reference
Other Resources