-
-
Method Summary
All Methods Instance Methods Abstract Methods
Modifier and Type |
Method |
Description |
void |
delete(int start,
int end,
boolean notifyListeners) |
Removes a sequence of characters from the content.
|
String |
get(int start,
int end) |
Retrieves a subset of the content.
|
void |
insert(int index,
String text,
boolean notifyListeners) |
Inserts a sequence of characters into the content.
|
int |
length() |
Returns the number of characters represented by the content.
|
-
-
Method Detail
-
insert
void insert(int index,
String text,
boolean notifyListeners)
Inserts a sequence of characters into the content.
- Parameters:
index
- the index
text
- the text string
notifyListeners
- the notify listener flag
- Since:
- JavaFX 2.1
-
delete
void delete(int start,
int end,
boolean notifyListeners)
Removes a sequence of characters from the content.
- Parameters:
start
- the start
end
- the end
notifyListeners
- the notify listener flag
- Since:
- JavaFX 2.1