private void scrollCharacterToVisible(int offset) {
TextArea textArea = (TextArea)getComponent();
Bounds characterBounds = getCharacterBounds(offset);
if (characterBounds != null) {
textArea.scrollAreaToVisible(characterBounds.x, characterBounds.y,
characterBounds.width, characterBounds.height);
}
}
public Color getColor() {