pdfSweep 5.0.1 API
|
Represents the line dash pattern. More...
Classes |
|
class | DashArrayElem |
Class representing a single element of a dash array More... |
|
Public Member Functions |
|
LineDashPattern (PdfArray dashArray, float dashPhase) | |
Creates new LineDashPattern object. More... |
|
virtual PdfArray | GetDashArray () |
Getter for the dash array. More... |
|
virtual void | SetDashArray (PdfArray dashArray) |
Setter for the dash array. More... |
|
virtual float | GetDashPhase () |
Getter for the dash phase. More... |
|
virtual void | SetDashPhase (float dashPhase) |
Setter for the dash phase. More... |
|
virtual bool | IsSolid () |
Checks whether the dashed pattern is solid or not. More... |
|
Static Public Member Functions |
|
static Path | ApplyDashPattern (Path path, LineDashPattern lineDashPattern) |
Apply a LineDashPattern along a Path More... |
|
Represents the line dash pattern.
Represents the line dash pattern. The line dash pattern shall control the pattern of dashes and gaps used to stroke paths. It shall be specified by a dash array and a dash phase.
|
inline |
Creates new LineDashPattern object.
dashArray | The dash array. See GetDashArray() |
dashPhase | The dash phase. See GetDashPhase() |
|
inlinestatic |
Apply a LineDashPattern along a Path
path | input path |
lineDashPattern | input LineDashPattern |
|
inlinevirtual |
Getter for the dash array.
Getter for the dash array.
The dash array’s elements is number that specify the lengths of alternating dashes and gaps; the numbers are nonnegative. The elements are expressed in user space units.
|
inlinevirtual |
Getter for the dash phase.
Getter for the dash phase.
The dash phase shall specify the distance into the dash pattern at which to start the dash. The elements are expressed in user space units.
|
inlinevirtual |
Checks whether the dashed pattern is solid or not.
Checks whether the dashed pattern is solid or not. It's solid when the size of a dash array is even and sum of all the units off in the array is 0. For example: [3 0 4 0 5 0 6 0] (sum is 0), [3 0 4 0 5 1] (sum is 1).
|
inlinevirtual |
Setter for the dash array.
Setter for the dash array. See GetDashArray()
dashArray | New dash array. |
|
inlinevirtual |
Setter for the dash phase.
Setter for the dash phase. See GetDashArray()
dashPhase | New dash phase. |