$outputBox = New-Object System.Windows.Forms.RichTextBox
$outputBox.Location = New-Object System.Drawing.Size(10,250)
$outputBox.Size = New-Object System.Drawing.Size(1160,590)
$outputBox.MultiLine = $True
$outputbox.font = "lucida console,9"
$outputBox.ScrollBars = "Vertical"
$outputbox.readonly = $true
I have an output box [richtextbox]. I have function that will display data into that. Is there any way we can have the selected string/word in bold ?