Tip
public IList<PointF[]> GetPoints()Public Function GetPoints As IList(Of PointF())public:
IList<array<PointF>^>^ GetPoints()member GetPoints : unit -> IList<PointF[]> The returned list contains the points of the figures in the order they were added to the Path instance. Every figure is represented by an array of flattened points that can be interpreted as a series of connected lines.
If a figure is closed and has at least 3 points, then it is ensured that the last point of the figure is the same as the first point.
This method can be used to provide a bridge between the Path class and other graphics libraries or APIs.