PdfGridCellStyle constructor

PdfGridCellStyle({
  1. PdfBorders? borders,
  2. PdfStringFormat? format,
  3. PdfImage? backgroundImage,
  4. PdfPaddings? cellPadding,
  5. PdfBrush? backgroundBrush,
  6. PdfBrush? textBrush,
  7. PdfPen? textPen,
  8. PdfFont? font,
})

Initializes a new instance of the PdfGridCellStyle class.

Implementation

PdfGridCellStyle(
    {PdfBorders? borders,
    PdfStringFormat? format,
    PdfImage? backgroundImage,
    PdfPaddings? cellPadding,
    super.backgroundBrush,
    super.textBrush,
    super.textPen,
    super.font}) {
  _initializeCellStyle(borders, format, backgroundImage, cellPadding);
}