JTextArea: setCaretColor(Color c) : JTextArea « javax.swing « Java by API






JTextArea: setCaretColor(Color c)

 
 
import java.awt.Color;

import javax.swing.JTextArea;
import javax.swing.text.JTextComponent;

public class Main {
  public static void main(String[] argv) throws Exception {
    JTextComponent c = new JTextArea();
    c.getCaretPosition();
    if (c.getCaretPosition() < c.getDocument().getLength()) {
      char ch = c.getText(c.getCaretPosition(), 1).charAt(0);
    }
    // Set the caret color
    c.setCaretColor(Color.red);
  }
}

   
  








Related examples in the same category

1.new JTextArea(Document document)
2.new JTextArea(String text)
3.new JTextArea(String text, int rows, int columns)
4.JTextArea: addCaretListener(CaretListener listener)
5.JTextArea: addUndoableEditListener(UndoableEditListener lis)
6.JTextArea: append(String str)
7.JTextArea: getActionMap()
8.JTextArea: getActions()
9.JTextArea: getCaretPosition()
10.JTextArea: getDocument()
11.JTextArea: getFont()
12.JTextArea: getHighlighter()
13.JTextArea: getKeymap()
14.JTextArea: getLineCount()
15.JTextArea: getLineEndOffset(int line)
16.JTextArea.getLineOfOffset(int offset)
17.JTextArea: getLineStartOffset(int line)
18.JTextArea: insert(String str, int pos)
19.JTextArea: isManagingFocus()
20.JTextArea: paste()
21.JTextArea: read(Reader in, Object desc)
22.JTextArea: replaceRange(String str, int start, int end)
23.JTextField: setHorizontalAlignment(int pos)
24.JTextArea: setLineWrap(boolean wrap)
25.JTextArea: setTabSize(int size)
26.JTextArea: setWrapStyleWord(boolean word)
27.JTextArea: write(Writer out)