locate

働き

テキスト画面のカーソルを指定された位置に移動します。

文法

locate x, y
  • x - 横方向の位置(左端から 0 〜 39)
  • y - 縦方向の位置(上端から 0 〜 24)

説明

locate は、テキスト画面にあるカーソルの位置を、指定された x, y の位置に変更します。print や input の表示位置を、locate を使って変更することができます。

サンプルプログラム

rem locate
cls
for i=0 to 20
  locate i,i
  print "*";
next
locate 0,10