Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

StyledText

mlabuda edited this page Feb 18, 2014 · 2 revisions

API

  • StyledText

Implementation(s)

  • DefaultStyledText

Usage

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");
Clone this wiki locally