PathFigures Property

Gets a read-only collection of the figures this Path consists of.

Definition

Namespace: KGySoft.Drawing.Shapes
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public ReadOnlyCollection<Figure> Figures { get; }

Property Value

ReadOnlyCollectionFigure

Remarks

This 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.

  Tip

To obtain the figures as series of flattened points, you can also use the GetPoints method.

See Also