CODE EDITOR FONT SIZE...

Hi,
How can I change the font size of the code editor?
Thanks
Hi,
you should use this code for the WinForms version:
syntaxEdit.Font = new Font(syntaxEdit.Font.FontFamily, newFontSize);
and this for the WPF:
syntaxEdit.FontSize = newFontSize;
Regards,
Andrew
Thank you.