font
C#
2
Posts
2
Posters
0
Views
1
Watching
-
i want to use a custom font in rich text box. How i will do that?
-
i want to use a custom font in rich text box. How i will do that?
Hi, I expect rtb.Font to define the default font (used when adding text), and rtb.SelectionFont to set the font for the current selection (if any). So if you want your one font for all text in the rtb, set rtb.Font before loading the rtb with text; otherwise modify the font for (parts of) existing text by selecting and SelectionFont. :)
Luc Pattyn