| Author |
Printing the StyledText value - SWT
|
Carl John
Ranch Hand
Joined: Jun 14, 2010
Posts: 34
|
|
Hi All,
I'm newbie in SWT . I'm trying to print the StyledText value into an image format. I don't know how to deal with StyledText. My code snippet is
final StyledText styledText = new StyledText(shell, SWT.V_SCROLL | SWT.BORDER);
styledText.setText("HELLO WORLD");
styledText.setStyleRange(new StyleRange(0, 5, display.getSystemColor(SWT.COLOR_GREEN), null));
styledText.setStyleRange(new StyleRange(7, 11, display.getSystemColor(SWT.COLOR_RED), null));
...
.....
Anyone please guide me...!
Very Thanks in advance..!
|
 |
 |
|
|
subject: Printing the StyledText value - SWT
|
|
|