Where would I modify the size of the font of just one field, the top row in a pdf export.
Thanks
Use the Row_Rendered server event to modify the font. To check if the export is for pdf, use:
if (IsExport("pdf")) {
//...
}
Where would I modify the size of the font of just one field, the top row in a pdf export.
Thanks
Use the Row_Rendered server event to modify the font. To check if the export is for pdf, use:
if (IsExport("pdf")) {
//...
}