PdfUnorderedMarkerStyle enum

Specifies the marker style.

//Create a new PDF document.
PdfDocument document = PdfDocument();
//Create a new unordered list.
PdfUnorderedList(
    items: PdfListItemCollection(['Essential tools', 'Essential grid']),
    font: PdfStandardFont(PdfFontFamily.helvetica, 16,
        style: PdfFontStyle.italic),
    marker: PdfUnorderedMarker(style: PdfUnorderedMarkerStyle.disk))
  ..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();
Inheritance

Constructors

PdfUnorderedMarkerStyle()
const

Values

none → const PdfUnorderedMarkerStyle

Marker have no style.

disk → const PdfUnorderedMarkerStyle

Marker is like a disk.

square → const PdfUnorderedMarkerStyle

Marker is like a square.

asterisk → const PdfUnorderedMarkerStyle

Marker is like a Asterisk.

circle → const PdfUnorderedMarkerStyle

Marker is like a circle.

customString → const PdfUnorderedMarkerStyle

Marker is custom string.

customImage → const PdfUnorderedMarkerStyle

Marker is custom image.

customTemplate → const PdfUnorderedMarkerStyle

Marker is custom template.

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