rowIndex property

int rowIndex

Gets the index of the row.

//Create a new PDF document
PdfDocument document = PdfDocument();
//Create a PdfGrid class
PdfGrid grid = PdfGrid();
// Sets the event raised on starting cell lay outing.
grid.beginCellLayout = (Object sender, PdfGridBeginCellLayoutArgs args) {
  if (args.rowIndex == 1 && args.cellIndex == 1) {
    args.graphics.drawRectangle(
        pen: PdfPen(PdfColor(250, 100, 0), width: 2),
        brush: PdfBrushes.white,
        bounds: args.bounds);
  }
  if (args.isHeaderRow && args.cellIndex == 0) {
    args.graphics.drawRectangle(
        pen: PdfPen(PdfColor(250, 100, 0), width: 2),
        brush: PdfBrushes.white,
        bounds: args.bounds);
  }
};
grid.style.cellPadding = PdfPaddings();
grid.style.cellPadding.all = 15;
//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';
//Draw the grid
grid.draw(
    page: document.pages.add(), bounds: Rect.zero);
//Save the document.
List<int> bytes = await document.save();
//Dispose the document.
document.dispose();

Implementation

int get rowIndex => _rowIndex;