List.deselect

Deselects the items at the given zero-relative indices in the receiver. If the item at the given zero-relative index in the receiver is selected, it is deselected. If the item at the index was not selected, it remains deselected. The range of the indices is inclusive. Indices that are out of range are ignored.

@param start the start index of the items to deselect @param end the end index of the items to deselect

@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>

  1. void deselect(int index)
  2. void deselect(int start, int end)
    class List
    void
    deselect
    (
    int start
    ,
    int end
    )
  3. void deselect(int[] indices)

Meta