Property MiterLimit
MiterLimit
Gets or sets the miter limit ratio used when Miter is specified. This value defines the maximum allowed ratio of the miter length to half of the pen's thickness before the join is converted to a bevel. Defaults to 4.0.
public double MiterLimit { get; set; }
Property Value
Examples
var pen = new Pen(new Color32(0, 0, 0), 2) { MiterLimit = 8.0 };