PdfDashStyle enum
Possible dash styles of the pen.
//Create a new PDF document.
PdfDocument document = PdfDocument()
..pages.add().graphics.drawRectangle(
pen: PdfPen(PdfColor(255, 0, 0),
dashStyle: PdfDashStyle.custom, lineCap: PdfLineCap.round)
..dashPattern = [4, 2, 1, 3],
bounds: Rect.fromLTWH(0, 0, 200, 100));
//Save the document.
List<int> bytes = await document.save();
//Close the document.
document.dispose();
Values
- solid → const PdfDashStyle
-
Solid line.
- dash → const PdfDashStyle
-
Dashed line.
- dot → const PdfDashStyle
-
Dotted line.
- dashDot → const PdfDashStyle
-
Dash-dot line.
- dashDotDot → const PdfDashStyle
-
Dash-dot-dot line.
- custom → const PdfDashStyle
-
User defined dash style.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
PdfDashStyle> - A constant List of the values in this enum, in order of their declaration.