data[0]: the uuid of the component to select data[1]: the start position (optional) data[2]: the end position (optional) @author tomyeh @since 5.0.0
439440441442443444445
} /** Selects the whole text in this input. */ public void select() { response(new AuSelect(this)); }
636637638639640641642
* * @param start the start position of the text (included) * @param end the end position of the text (excluded) */ public void setSelectionRange(int start, int end) { response(new AuSelect(this, start, end)); }