SecondBASIC Documentation v3

Home / Command Reference / Locate

Locate

Description: Sets the text cursor to <Row>, <Column>.

Syntax:

Locate [<Row>], [<Column>]

Part Description
<Row> Optional. Sets the text cursor to the specified <Row>. If omitted, the cursor row is not changed.
<Column> Optional. Sets the text cursor to the specified <Column>. If omitted, the cursor column is not changed.

Example:

    Locate 2,4
    Print "Hello World"