Stylize certain word in TextBlock

Good day.

Let’s say given I have this GraphObject:
$(go.TextBlock, 'Some bold text')

Is there a way to stylize certain words? ie: the output will be: Some bold text

Sorry, but no – all of the properties of a TextBlock apply to all of its text. That’s why it’s called a “TextBlock” rather than a TextRun or TextSpan or something like that.

For simple cases you can divide up the text into independent TextBlock instances.