Hello,
Could some body please tell me how i can change the fonts style of a stringbuilder string at runtime.
Example:
Textbox1.text = MyOutput()
Could some one tell me how i can do this - i want the string "Hello" to be blue when it gets outputted or make it Bold.
I can't find anything that can let me do this :(
Any Help is highly apprecaited :)
Regards
Could some body please tell me how i can change the fonts style of a stringbuilder string at runtime.
Example:
Code:
Function myFun () as string
Dim MyOutput As New System.Text.StringBuilder("")
'I want to change the font or font-color of the String "Hello"
MyOutput.append("Hello")
MyOutput.appendLine()
MyOutput.append("World")
Return MyOutput.ToString
End Function
Could some one tell me how i can do this - i want the string "Hello" to be blue when it gets outputted or make it Bold.
I can't find anything that can let me do this :(
Any Help is highly apprecaited :)
Regards
Comment