PdfFillMode enum

Specifies how the shapes are filled.

//Creates a new PDF document.
PdfDocument doc = PdfDocument();
//Create PDF graphics for the page
doc.pages.add().graphics
  //set clip.
  ..setClip(bounds: Rect.fromLTWH(0, 0, 50, 12), mode: PdfFillMode.alternate)
  ..drawString('Hello world!', PdfStandardFont(PdfFontFamily.helvetica, 12),
      pen: PdfPens.red);
//Saves the document.
List<int> bytes = doc.save();
//Dispose the document.
doc.dispose();
Inheritance

Constructors

PdfFillMode()
const

Values

winding → const PdfFillMode

Nonzero winding number rule of determining "insideness" of point.

alternate → const PdfFillMode

Even odd rule of determining "insideness" of point.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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<PdfFillMode>
A constant List of the values in this enum, in order of their declaration.