PdfMarker class abstract

Represents base class for markers.

//Create a new PDF document.
PdfDocument document = PdfDocument();
//Create a new ordered list.
PdfOrderedList(
    items: PdfListItemCollection(['Essential tools', 'Essential grid']),
    font: PdfStandardFont(PdfFontFamily.helvetica, 16,
        style: PdfFontStyle.italic))
  ..draw(
      page: document.pages.add(), bounds: const Rect.fromLTWH(20, 20, 0, 0));
//Save the document.
List<int> bytes = await document.save();
//Dispose the document.
document.dispose();
Implementers

Constructors

PdfMarker()

Properties

alignment PdfListMarkerAlignment
Marker alignment.
getter/setter pair
brush PdfBrush?
Marker brush.
getter/setter pair
font PdfFont?
Marker font.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
pen PdfPen?
Marker pen.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringFormat PdfStringFormat?
The string format of the marker.
getter/setter pair

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