Can I make a bold effect on specified text in a RichTextBlock?
Example RichTextBlock content:
It allows you to make some unknown jobs quickly
I should make a bold effect on the word "unknown" so it should look like:
It allows you to make some unknown jobs quickly
I can add linebreak with UNICODE characters. It is "\u2028". Is there any code to make bold effect with UNICODE?
Yes, you can add text effects for any range of characters that you want. Here is a code snippet in VB.net - sorry I don't do c#.
One way is to change the current font before you append new text:
Another way is to define a beginning and end of a range of text:
HTH - Ken