PdfList class abstract
Represents base class for lists.
//Create a new PDF document.
PdfDocument document = PdfDocument();
//Create a new ordered list.
PdfOrderedList(
text: 'PDF\nXlsIO\nDocIO\nPPT',
font: PdfStandardFont(PdfFontFamily.helvetica, 16,
style: PdfFontStyle.italic),
format: PdfStringFormat(lineSpacing: 20),
marker: PdfOrderedMarker(style: PdfNumberStyle.numeric),
style: PdfNumberStyle.numeric,
indent: 15,
textIndent: 10)
..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
-
- Object
- PdfLayoutElement
- PdfList
- Implementers
Constructors
- PdfList()
Properties
- beginItemLayout ↔ BeginItemLayoutCallback?
-
Event that rises when item begin layout.
getter/setter pair
- beginPageLayout ↔ BeginPageLayoutCallback?
-
Raises before the element should be printed on the page.
getter/setter pairinherited
- brush ↔ PdfBrush?
-
The brush for the list.
getter/setter pair
- endItemLayout ↔ EndItemLayoutCallback?
-
Event that rises when item end layout.
getter/setter pair
- endPageLayout ↔ EndPageLayoutCallback?
-
Raises after the element was printed on the page.
getter/setter pairinherited
- font ↔ PdfFont?
-
Gets or sets the list font.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- indent ↔ double
-
Tabulation for items.
getter/setter pair
- items → PdfListItemCollection
-
Gets items of the list.
no setter
- pen ↔ PdfPen?
-
The pen for the list.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- stringFormat ↔ PdfStringFormat?
-
The string format for the list.
getter/setter pair
- textIndent ↔ double
-
Indent between marker and text.
getter/setter pair
Methods
-
draw(
{PdfGraphics? graphics, PdfPage? page, Rect? bounds, PdfLayoutFormat? format}) → PdfLayoutResult? -
Draws an element on the graphics or page.
inherited
-
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