PdfGridHeaderCollection constructor

PdfGridHeaderCollection(
  1. PdfGrid grid
)

Initializes a new instance of the PdfGridHeaderCollection class with the parent grid.

Implementation

PdfGridHeaderCollection(PdfGrid grid) {
  _helper = PdfGridHeaderCollectionHelper(this);
  _helper.grid = grid;
  _rows = <PdfGridRow>[];
}