Get Caret Position : Text « SWT « Java Tutorial






Get Caret Position
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class CaretPosition {

  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    Text text = new Text(shell, SWT.BORDER | SWT.V_SCROLL);
    text.setBounds(10, 10, 100, 100);
    text.append("Line \n");

    text.setSelection(30);
    System.out.println("selection=" + text.getSelection());
    System.out.println("caret position=" + text.getCaretPosition());
    System.out.println("caret location=" + text.getCaretLocation());

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    display.dispose();
  }
}








17.15.Text
17.15.1.Introducing Text and Text Styles
17.15.2.Create a single-line text fieldCreate a single-line text field
17.15.3.Create a right-aligned single-line text fieldCreate a right-aligned single-line text field
17.15.4.Create a password text fieldCreate a password text field
17.15.5.Create a read-only text fieldCreate a read-only text field
17.15.6.Create a multiple-line text fieldCreate a multiple-line text field
17.15.7.Change Text FontChange Text Font
17.15.8.Set the selection (start, end)Set the selection (start, end)
17.15.9.Get Caret PositionGet Caret Position
17.15.10.Append line to TextAppend line to Text
17.15.11.Set size for TextSet size for Text
17.15.12.Select all text in TextSelect all text in Text
17.15.13.Resize a text controlResize a text control
17.15.14.Text: type in one text, output to anotherText: type in one text, output to another
17.15.15.Prevent Tab from traversing out of a controlPrevent Tab from traversing out of a control
17.15.16.Draw on the background of TextDraw on the background of Text