Using the AlternatingRowsDemo.cs. The DocumentBuilder CellFormat methods work readily but the Font properties such as below do not. What is the correct approach to conditionally making a cell bold in the event handler?
// so we have to iterate over all cells in the row.
for (int colIdx = 0; colIdx < 4; colIdx++)
{
mBuilder.MoveToCell(0, mRowIdx, colIdx, 0);
mBuilder.Font.Bold = true; //add this one line to the demo - it has no effect here.
mBuilder.CellFormat.Shading.BackgroundPatternColor = rowColor; //cool!