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,
    PdfBrush? backgroundBrush,
    PdfBrush? textBrush,
    PdfPen? textPen,
    PdfFont? font})
    : super(
          backgroundBrush: backgroundBrush,
          textBrush: textBrush,
          textPen: textPen,
          font: font) {
  _initializeCellStyle(borders, format, backgroundImage, cellPadding);
}