PdfListItemCollection constructor
Initializes a new instance of the PdfListItemCollection class.
//Create a new PDF document.
PdfDocument document = PdfDocument();
//Create a new ordered list.
PdfOrderedList(
//Create a new list item collection.
items: PdfListItemCollection(['PDF', 'XlsIO', 'DocIO', 'PPT']),
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: Rect.fromLTWH(20, 20, 0, 0));
//Save the document.
List<int> bytes = await document.save();
//Dispose the document.
document.dispose();
Implementation
PdfListItemCollection([List<String>? items]) {
_helper = PdfListItemCollectionHelper(this, items);
}