System.Drawing.Drawing2D.AdjustableArrowCap
Represents an adjustable arrow-shaped line cap. This class cannot be inherited.
namespace System.Drawing.Drawing2D
{
public sealed class AdjustableArrowCap : CustomLineCap
{
public bool Filled { get; set; }
public float Height { get; set; }
public float MiddleInset { get; set; }
public float Width { get; set; }
public AdjustableArrowCap(float width, float height);
public AdjustableArrowCap(float width, float height, bool isFilled);
}
}