<PackageReference Include="System.Drawing.Common" Version="11.0.0-preview.2.26159.112" />

System.Drawing.Drawing2D.CustomLineCap

Encapsulates a custom user-defined line cap.
namespace System.Drawing.Drawing2D { public class CustomLineCap : MarshalByRefObject, ICloneable, IDisposable { public LineJoin StrokeJoin { get; set; } public LineCap BaseCap { get; set; } public float BaseInset { get; set; } public float WidthScale { get; set; } public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath); public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap); public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap, float baseInset); public void Dispose(); protected virtual void Dispose(bool disposing); public object Clone(); public void SetStrokeCaps(LineCap startCap, LineCap endCap); public void GetStrokeCaps(out LineCap startCap, out LineCap endCap); } }