PathData
Contains the graphical data that makes up a GraphicsPath object. This class cannot be inherited.
using System.Runtime.CompilerServices;
namespace System.Drawing.Drawing2D
{
[NullableContext(2)]
[Nullable(0)]
public sealed class PathData
{
public PointF[] Points { get; set; }
public byte[] Types { get; set; }
}
}