Global web icon
stackoverflow.com
https://stackoverflow.com/questions/6485156/adding…
.net - Adding strings to a RichTextBox in C# - Stack Overflow
I currently have a function that will set a value to a RichTextBox, although how could you "add" a value or a new line to it, rather than overwriting existing data in the RichTextBox? richTextBox2...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/343468/richtex…
c# - Richtextbox wpf binding - Stack Overflow
To do DataBinding of the Document in a WPF RichtextBox, I saw 2 solutions so far, which are to derive from the RichtextBox and add a DependencyProperty, and also the solution with a "proxy". Neith...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/11354655/diffe…
Difference between Textbox and RichTextbox wpf?
10 See this Microsoft overview of the differences between a TextBox and a RichTextBox. From above Link: Both RichTextBox and TextBox allow users to edit text, however, the two controls are used in different scenarios. A RichTextBox is a better choice when it is necessary for the user to edit formatted text, images, tables, or other rich content.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1926264/color-…
Color different parts of a RichTextBox string - Stack Overflow
Well, the main difference between the two functions is that the latter allows you to decide whether or not to add a new line after the text, while the other always adds a new line (unless the RichTextBox is empty), the current date and time, and a tab character before the text. Also, the second function always sets the selection color to black after adding text, while the first function does ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/10805134/how-t…
c# - How to clear text content in RichTextBox - Stack Overflow
After getting the text in the RichTextBox I want to clear the text. How can I do that?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/13220856/how-t…
c# - How to use multi color in richtextbox - Stack Overflow
I using C# windows forms and I have richtextbox and I want to color some text in red, some in green and some in black. How to do so? Image attached.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/11906932/size-…
c# - Size RichTextBox according to contents - Stack Overflow
This code automatically sizes a RichTextBox according to it's contents. I'm having issues, especially with tables. \\t may be ignored. I tried a managed solution, now I'm trying platform invoke.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/6243350/how-to…
How to 'align' text in RichTextBox C#? - Stack Overflow
If you want only part of the textbox with a certain alignment, then use the RichTextBox.Select () routine to select the text, then set the SelectionAlignment property.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/9855292/links-…
c# - Links inside rich textbox? - Stack Overflow
The standard RichTextBox control (assuming you are using Windows Forms) exposes a rather limited set of features, so unfortunately you will need to do some Win32 interop to achieve that (along the lines of SendMessage (), CFM_LINK, EM_SETCHARFORMAT etc.).
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/16306184/chang…
Changing font for richtextbox without losing formatting
How to change the font of all the contents of a richtextbox without losing formatting? I am trying to use rtb.SelectAll(); rtb.SelectionFont = new Font(fontName,...); but the font constructor ha...