Gets or sets the width of this pen.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public double Width { get; set; }
VB
Public Property Width As Double
Get
Set
Property Value
Type:
DoubleThe width of this pen.
Remarks
This parameter specifies the thickness of the
line used to stroke a path. It is a non-negative number expressed
in user space units; stroking a path entails painting all points
whose perpendicular distance from the path in user space is less
than or equal to half the line width.
A width of 0 denotes the thinnest line that can be rendered at
device resolution: 1 device pixel wide. However, some devices cannot
reproduce 1-pixel lines, and on high-resolution devices, they are
nearly invisible. Since the results of rendering such zero-width
lines are device-dependent, their use is not recommended.
Default value: 1.0
See Also