Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to set the cursor position of SWT Text to the end after appending string. I am aware of changing cursor position of SWT StyledText, but not sure of SWT Text. If you people have come across this Challenge and found the solution kindly share it.

share|improve this question
Please use as many tags as possible to describe your question, not just swt. – Baz Dec 26 '12 at 10:58

1 Answer

up vote 3 down vote accepted

Have a look at 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();
}

This will set the cursor to the end.

share|improve this answer
Thank you very much it worked. – Deepak Ramesh Dec 26 '12 at 12:25
@DeepakRamesh Great, then please upvote and accept my answer. – Baz Dec 26 '12 at 12:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.