Copies the contents of the current selection to the internal clipboard and then clears the selection.
()
| 2994 | /** Copies the contents of the current selection to the internal |
| 2995 | clipboard and then clears the selection. */ |
| 2996 | public void cut() { |
| 2997 | copy(true); |
| 2998 | } |
| 2999 | |
| 3000 | /** Copies the contents of the current selection, or the entire |
| 3001 | image if there is no selection, to the internal clipboard. */ |