applyStyleForLastColumn property

bool applyStyleForLastColumn
getter/setter pair

Gets or sets a value indicating whether to apply first-column formatting to the first column of the specified table.

//Create a new PDF document
PdfDocument document = PdfDocument();
//Create a PdfGrid class
PdfGrid grid = PdfGrid();
//Add the columns to the grid
grid.columns.add(count: 3);
//Add header to the grid
grid.headers.add(1);
//Add the rows to the grid
PdfGridRow header = grid.headers[0];
header.cells[0].value = 'Employee ID';
header.cells[1].value = 'Employee Name';
header.cells[2].value = 'Salary';
//Add rows to grid
PdfGridRow row = grid.rows.add();
row.cells[0].value = 'E01';
row.cells[1].value = 'Clay';
row.cells[2].value = '\$10,000';
row = grid.rows.add();
row.cells[0].value = 'E02';
row.cells[1].value = 'Simon';
row.cells[2].value = '\$12,000';
PdfGridBuiltInStyleSettings tableStyleOption =
    PdfGridBuiltInStyleSettings();
//Sets applyStyleForLastColumn
tableStyleOption.applyStyleForLastColumn = true;
Apply built-in table style
grid.applyBuiltInStyle(PdfGridBuiltInStyle.listTable6ColorfulAccent1,
    settings: tableStyleOption);
//Draw the grid
grid.draw(
    page: document.pages.add(), bounds: const Rect.fromLTWH(10, 10, 0, 0));
//Save the document.
List<int> bytes = await document.save();
//Dispose the document.
document.dispose();

Implementation

bool applyStyleForLastColumn;