Добавление текста в RichTextBox с различными атрибутами - Visual Basic .NET
Формулировка задачи:
Всем здравствуйте.Как из кода занести в одно и тоже RichTextBox одну строчку со шрифтом синего цвета,а следующую со шрифтом красного цвета,
все последующие должны заноситься со шрифтом чёрного цвета
Решение задачи: «Добавление текста в RichTextBox с различными атрибутами»
textual
Листинг программы
Private Sub WriteTextToRichTextBox() ' Clear all text from the RichTextBox; richTextBox1.Clear() ' Set the font for the opening text to a larger Arial font; richTextBox1.SelectionFont = New Font("Arial", 16) ' Assign the introduction text to the RichTextBox control. RichTextBox1.SelectedText = "The following is a list of bulleted items:" + ControlChars.Cr ' Set the Font for the first item to a smaller size Arial font. richTextBox1.SelectionFont = New Font("Arial", 12) ' Specify that the following items are to be added to a bulleted list. richTextBox1.SelectionBullet = True ' Set the color of the item text. richTextBox1.SelectionColor = Color.Red ' Assign the text to the bulleted item. richTextBox1.SelectedText = "Apples" + ControlChars.Cr ' Apply same font since font settings do not carry to next line. richTextBox1.SelectionFont = New Font("Arial", 12) richTextBox1.SelectionColor = Color.Orange richTextBox1.SelectedText = "Oranges" + ControlChars.Cr richTextBox1.SelectionFont = New Font("Arial", 12) richTextBox1.SelectionColor = Color.Purple richTextBox1.SelectedText = "Grapes" + ControlChars.Cr ' End the bulleted list. richTextBox1.SelectionBullet = False ' Specify the font size and string for text displayed below bulleted list. richTextBox1.SelectionFont = New Font("Arial", 16) richTextBox1.SelectedText = "Bulleted Text Complete!" End Sub
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д