PdfGridStyle constructor
PdfGridStyle({
- double? cellSpacing,
- PdfPaddings? cellPadding,
- PdfBorderOverlapStyle? borderOverlapStyle,
- PdfBrush? backgroundBrush,
- PdfBrush? textBrush,
- PdfPen? textPen,
- 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);
}