Hey there
I wonder how it is possible to style texts in labels or buttons using basic HTML formatting tags?
What are best practices to have multi-format text stylings?
The most challenge I see is actual inline formatting in multi part contents, like messages with different stylings. (Thinking about Markdown)
I found the tag, that works fine on Labels. Unfortunately, I was not able to succeed with WebListBox Rows, that have a applied WebStyle.
Var ucr As New WebListBoxStyleRenderer(user_style, "<raw><b>User: </b></raw>")
Var uccr As New WebListBoxStyleRenderer(user_style, mContent)
list_Chat.AddRow("<raw><b>User: </b></raw>")
list_Chat.CellTextAt(list_Chat.LastRowIndex,0) = ucr
list_Chat.AddRow(promptField.Text)
list_Chat.CellTextAt(list_Chat.LastRowIndex,0) = uccr
This is just an illustration.
Cheers
// Patric