|
//Create a new PdfGrid.
PdfGrid pdfGrid = new PdfGrid();
//Create and customize string format
PdfStringFormat format = new PdfStringFormat();
format.Alignment = PdfTextAlignment.Center;
//Specify the style for PdfGridcell
PdfGridCellStyle headerstyle = new PdfGridCellStyle();
headerstyle.Font = new PdfStandardFont(PdfFontFamily.Helvetica, 10);
headerstyle.StringFormat = format;
//Apply style
pdfGrid.Headers.ApplyStyle(headerstyle); |
|
//Create a new PdfGrid.
PdfGrid pdfGrid = new PdfGrid();
//Specify the style for PdfGridcell
PdfGridCellStyle cellStyle = new PdfGridCellStyle();
cellStyle.BackgroundBrush = PdfBrushes.Pink;
//Apply style for rows
pdfGrid.Rows.ApplyStyle(cellStyle);
//Apply style for specific cell
pdfGrid.Rows[1].Cells[1].Style = cellStyle; |