Guest User

Untitled

a guest
Apr 16th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. this.richTextBox1.SelectionColor = Color.Red
  2. this.richTextBox1.text += "Test"
  3.  
  4. richTextBox1.Text += "Test"
  5. richTextBox1.Select(richTextBox1.TextLength - 4, 4)
  6. richTextBox1.SelectionColor = Color.Red
  7.  
  8. this.richTextBox1.SelectionColor = Color.Red
  9.  
  10. this.richTextBox1.text="Hello world!"
  11. this.richTextBox1.selstart=0
  12. this.richTextBox1.sellength=5
  13. this.richTextBox1.SelectionColor = Color.Red
  14.  
  15. RichTextBox1.SelectionColor = Color.Red
  16. RichTextBox1.SelectedText = "Hello "
  17. RichTextBox1.SelectionColor = Color.Green
  18. RichTextBox1.SelectedText = "World"
Add Comment
Please, Sign In to add comment