Tip
To obtain the figures as series of flattened points, you can also use the GetPoints method.
public ReadOnlyCollection<Figure> Figures { get; }Public ReadOnly Property Figures As ReadOnlyCollection(Of Figure)
Getpublic:
property ReadOnlyCollection<Figure^>^ Figures {
ReadOnlyCollection<Figure^>^ get ();
}member Figures : ReadOnlyCollection<Figure> with getThis property is meant to provide information about the figures of this Path instance for interoperability with other libraries, and it cannot be used to modify the figures. To add new figures or path segments to this Path, use the StartFigure and Add... methods instead.