How can I set the font for the header and footer in TLMDPrinter from within my application. The font property does not appear to be accessible at run time. Thank you.
There no explicit Font properties for header and footer, because the text in thouse two areas is specified as RTF, which can include several fonts at the same time.
So, you can prepare RTF text using some text editor (WordPad, for example) and then just load it using Header.Template.LoadFromStream method. As well, you can generate RTF text on the fly.
Comments