Export field font size

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
crash
User
Posts: 151

Export field font size

Post by crash »

Where would I modify the size of the font of just one field, the top row in a pdf export.
Thanks


MichaelG
User
Posts: 1110

Post by MichaelG »

Use the Row_Rendered server event to modify the font. To check if the export is for pdf, use:

if (IsExport("pdf")) {
//...
}

Post Reply