GStateSetDashPattern Method |
Sets the dash pattern used to stroke paths.
The line dash pattern controls the pattern of dashes and gaps used to stroke
paths. It is specified by a dash Array and a dash phase. The dash Array's elements
are numbers that specify the lengths of alternating dashes and gaps; the dash phase
specifies the distance into the dash pattern at which to start the dash. The elements
of both the dash Array and the dash phase are expressed in user space units.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetDashPattern(
double[] dash_Array,
double phase
)
Public Sub SetDashPattern (
dash_Array As Double(),
phase As Double
)
public:
virtual void SetDashPattern(
[InAttribute] array<double>^ dash_Array,
[InAttribute] double phase
) sealed
function SetDashPattern(dash_Array, phase);
Parameters
- dash_Array
- Type: SystemDouble
the dash_Array
- phase
- Type: SystemDouble
the phase
See Also