PdfGridStyle constructor

PdfGridStyle({
  1. double? cellSpacing,
  2. PdfPaddings? cellPadding,
  3. PdfBorderOverlapStyle? borderOverlapStyle,
  4. PdfBrush? backgroundBrush,
  5. PdfBrush? textBrush,
  6. PdfPen? textPen,
  7. PdfFont? font,
})

Initializes a new instance of the PdfGridStyle class.

Implementation

PdfGridStyle(
    {double? cellSpacing,
    PdfPaddings? cellPadding,
    PdfBorderOverlapStyle? borderOverlapStyle,
    PdfBrush? backgroundBrush,
    PdfBrush? textBrush,
    PdfPen? textPen,
    PdfFont? font}) {
  _initializeStyle(cellSpacing, cellPadding, borderOverlapStyle,
      backgroundBrush, textBrush, textPen, font);
}