--- title: Determine When Formatting Attributes Change in RichTextBox Control ms.date: "03/30/2017" dev_langs: - "csharp" - "vb" - "cpp" helpviewer_keywords: - "examples [Windows Forms], text boxes" - "RichTextBox control [Windows Forms], determining font changes" - "text boxes [Windows Forms], determining font changes" - "SelChange event" ms.assetid: bdfed015-f77a-41e5-b38f-f8629b2fa166 --- # How to: Determine When Formatting Attributes Change in the Windows Forms RichTextBox Control A common use of the Windows Forms control is formatting text with attributes such as font options or paragraph styles. Your application may need to keep track of any changes in text formatting for the purpose of displaying a toolbar, as in many word-processing applications. ### To respond to changes in formatting attributes 1. Write code in the event handler to perform an appropriate action depending on the value of the attribute. The following example changes the appearance of a toolbar button depending on the value of the property. The toolbar button will only be updated when the insertion point is moved in the control. The example below assumes a form with a control and a control that contains a toolbar button. For more information about toolbars and toolbar buttons, see [How to: Add Buttons to a ToolBar Control](how-to-add-buttons-to-a-toolbar-control.md). ```vb ' The following code assumes the existence of a toolbar control ' with at least one toolbar button. Private Sub RichTextBox1_SelectionChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles RichTextBox1.SelectionChanged If RichTextBox1.SelectionBullet = True Then ' Bullet button on toolbar should appear pressed ToolBarButton1.Pushed = True Else ' Bullet button on toolbar should appear unpressed ToolBarButton1.Pushed = False End If End Sub ``` ```csharp // The following code assumes the existence of a toolbar control // with at least one toolbar button. private void richTextBox1_SelectionChanged(object sender, System.EventArgs e) { if (richTextBox1.SelectionBullet == true) { // Bullet button on toolbar should appear pressed toolBarButton1.Pushed = true; } else { // Bullet button on toolbar should appear unpressed toolBarButton1.Pushed = false; } } ``` ```cpp // The following code assumes the existence of a toolbar control // with at least one toolbar button. private: System::Void richTextBox1_SelectionChanged( System::Object ^ sender, System::EventArgs ^ e) { if (richTextBox1->SelectionBullet == true) { // Bullet button on toolbar should appear pressed toolBarButton1->Pushed = true; } else { // Bullet button on toolbar should appear unpressed toolBarButton1->Pushed = false; } } ``` ## See also - - - [RichTextBox Control](richtextbox-control-windows-forms.md) - [Controls to Use on Windows Forms](controls-to-use-on-windows-forms.md)