This repository was archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
StyledText
mlabuda edited this page Feb 18, 2014
·
2 revisions
- StyledText
- DefaultStyledText

Look up a styled text with index 0
StyledText styledText = new StyledText(0);Look up a styled text with text "This is a styled text"
StyledText styledText = new StyledText("This is a styled text");Get text value of styled text
String text = styledText.getText();Get tool tip text of styled text
String tooltip = styledText.getToolTipText();Set text to "Some styled text"
styledText.setText("Some styled text");Insert styled text "More styled text" to line 2 and column 1
styledText.insertText(2, 1, "More styled text");