TextEdit (gb.qt4.ext)
This control implements a rich-text editor.
Note:
The TextEdit.Foreground property has no effect on this control.
You must either use HTML syntax to set text colors inline or pre-set TextEdit.Format.
Color
Eg.
TextEdit1.RichText = "<font color=red>This is some red text</font> and this text is default text color"
Or this..
TextEdit1.Format.Color = Color.Red
TextEdit1.Insert("This is some red text")
TextEdit1.Format.Color = Color.Default
TextEdit1.Insert(" and this text is default text color")