JTextComponent: setSelectionEnd(int selectionEnd) : JTextComponent « javax.swing « Java by API






JTextComponent: setSelectionEnd(int selectionEnd)

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

public class Main {
  public static void main(String[] argv) {
    JTextComponent c = new JTextArea();

    c.setSelectionEnd(20);
  }
}

   
    
  








Related examples in the same category

1.JTextComponent.KeyBinding
2.JTextComponent: addCaretListener(CaretListener listener)
3.JTextComponent: getActions()
4.JTextComponent: getCaretPosition()
5.JTextComponent: getDocument()
6.JTextComponent: getHighlighter()
7.JTextComponent: getSelectedText()
8.JTextComponent: getText(int offs, int len)
9.JTextComponent: moveCaretPosition(int pos)
10.JTextComponent: print(MessageFormat headerFormat, MessageFormat footerFormat, boolean showPrintDialog, PrintService service, PrintRequestAttributeSet attributes, boolean interactive)
11.JTextComponent: read(Reader in, Object desc)
12.JTextComponent: replaceSelection(String content)
13.JTextComponent: select(int selectionStart, int selectionEnd)
14.JTextComponent: setDocument(Document doc)
15.JTextComponent: setDragEnabled(boolean b)
16.JTextComponent: setFocusAccelerator(char aKey)
17.JTextComponent: setNavigationFilter(NavigationFilter filter)
18.JTextComponent: setSelectedTextColor(Color c)
19.JTextComponent: setSelectionColor(Color c)
20.JTextComponent: setSelectionStart(int selectionStart)
21.JTextComponent: write(Writer out)