PdfListMarkerAlignment enum
Represents marker alignment.
//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),
marker: PdfOrderedMarker(style: PdfNumberStyle.numeric)
..alignment = PdfListMarkerAlignment.right)
..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();
Values
- left → const PdfListMarkerAlignment
-
Left alignment for marker.
- right → const PdfListMarkerAlignment
-
Right alignment for marker.
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<
PdfListMarkerAlignment> - A constant List of the values in this enum, in order of their declaration.