| PdfPathObjectMiterLimit Property |
Set the maximum length of mitered line joins for stroked paths.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public float MiterLimit { get; set; }
Public Property MiterLimit As Single
Get
Set
public:
property float MiterLimit {
float get ();
void set (float value);
}
member MiterLimit : float32 with get, set
/** @property */
public float get_MiterLimit()
/** @property */
public void set_MiterLimit(float value)
function get_MiterLimit();
function set_MiterLimit(value);
Property Value
SingleA non-negative number expressed in user space units, specifies the limitation of the length of “spikes” produced when line segments join at sharp angles.
Remarks
When two line segments meet at a sharp angle and
Miter have been specified as the line join style, it is possible for the miter to extend far beyond the
thickness of the line stroking the path. The miter limit imposes a maximum on the ratio of the miter length to the line width.
When the limit is exceeded, the join is converted from a
Miter to a
Bevel.
FIGURE 4.7 Miter length |
---|
|
See Also