que posicion obtener grabfocus coordenadas java text swt

java - posicion - Cómo establecer la posición del cursor en texto SWT



obtener posicion del mouse java (1)

Estoy tratando de establecer la posición del cursor del Text SWT hasta el final después de agregar la cadena. Soy consciente de cambiar la posición del cursor de SWT StyledText , pero no estoy seguro de SWT Text . Si ustedes han encontrado este desafío y han encontrado la solución, háganlo.


Eche un vistazo a Text#setSelection(int) :

public static void main(String[] args) { Display d = new Display(); final Shell shell = new Shell(d); shell.setLayout(new GridLayout(1, false)); Text text = new Text(shell, SWT.BORDER); text.setText("Some random text here..."); text.setSelection(text.getText().length()); shell.pack(); shell.open(); while (!shell.isDisposed()) while (!d.readAndDispatch()) d.sleep(); }

Esto establecerá el cursor hasta el final.