I develop some features based on Eclispe GEF.

I want to create a label with some string. for example: new Label("This is a good test stensece")

Now, I want to get these effects "good" is in Bold font, and "test" is in italic. It looks like can use some HTML way to implement that

So,is there any one knows that?

Thank you very much!

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

If you don't want to use StyledText, you could create multiple labels based on substrings of the original string, then use

labelName.setFont(Font font);

on each label to create different fonts for each portion.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.