I would like to hide part of the text in my RichTextBox. I know that \v is the start of a hiding section. But how do I unhide ? For example if I want to hide the word "big" in the string "hello big world" so that "hello world" is visible:
text : "hello big world"
RTF so far : "hello \v big world"
result : "hello "
wanted result -> : "hello world"
doesn't work : "hello \v big\v world"
Is there a way ?
\v{}
– Imperfective