How to change the default font size in TDBRichViewEdit?
Posted: Mon Jan 25, 2010 11:36 am
Hello,
I need to change the default font size form 10 point to 8. I have try the following code at create time of the form:
But the font size didn't change. What can I do?
Jürgen
I need to change the default font size form 10 point to 8. I have try the following code at create time of the form:
Code: Select all
For i := 0 To DBRichTextEdit1.Editor.Style.TextStyles.Count - 1 Do
DBRichTextEdit1.Editor.Style.TextStyles[i].Size := 8;
Jürgen