Sets the selection and scrolls it into view.
<p>
Indexing is zero based. Text selections are specified in terms of
caret positions. In a text widget that contains N characters, there are
N+1 caret positions, ranging from 0..N
</p>
@param point x=selection start offset, y=selection end offset
The caret will be placed at the selection start when x > y.
@see #setSelection(int,int)
@exception SWTException <ul>
<li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
<li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
</ul>
@exception IllegalArgumentException <ul>
<li>ERROR_NULL_ARGUMENT when point is null</li>
<li>ERROR_INVALID_ARGUMENT when either the start or the end of the selection range is inside a
multi byte line delimiter (and thus neither clearly in front of or after the line delimiter)
</ul>
Sets the selection and scrolls it into view. <p> Indexing is zero based. Text selections are specified in terms of caret positions. In a text widget that contains N characters, there are N+1 caret positions, ranging from 0..N </p>
@param point x=selection start offset, y=selection end offset The caret will be placed at the selection start when x > y. @see #setSelection(int,int) @exception SWTException <ul> <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> </ul> @exception IllegalArgumentException <ul> <li>ERROR_NULL_ARGUMENT when point is null</li> <li>ERROR_INVALID_ARGUMENT when either the start or the end of the selection range is inside a multi byte line delimiter (and thus neither clearly in front of or after the line delimiter) </ul>