<PackageReference Include="System.Drawing.Common" Version="9.0.0-preview.2.24128.3" />

AdjustableArrowCap

public sealed class AdjustableArrowCap : CustomLineCap
Represents an adjustable arrow-shaped line cap. This class cannot be inherited.
public bool Filled { get; set; }

Gets or sets whether the arrow cap is filled.

public float Height { get; set; }

Gets or sets the height of the arrow cap.

public float MiddleInset { get; set; }

Gets or sets the number of units between the outline of the arrow cap and the fill.

public float Width { get; set; }

Gets or sets the width of the arrow cap.

public AdjustableArrowCap(float width, float height)

Initializes a new instance of the AdjustableArrowCap class with the specified width and height. The arrow end caps created with this constructor are always filled.

public AdjustableArrowCap(float width, float height, bool isFilled)

Initializes a new instance of the AdjustableArrowCap class with the specified width, height, and fill property. Whether an arrow end cap is filled depends on the argument passed to the isFilled parameter.