コード例 #1
0
ファイル: TextField.java プロジェクト: henu/libgdx
 /**
  * Copies the selected contents of this TextField to the {@link Clipboard} implementation set on
  * this TextField, then removes it.
  */
 public void cut() {
   if (hasSelection) {
     copy();
     delete();
   }
 }