public configureCursor(frame as TerminalFrame, row as Int, col as Int, width as Int, height as Int) as Boolean:
Lets a widget place the terminal cursor inside its own frame area.
| Parameter | Description |
|---|---|
frame | Target frame. |
row | Top row of the widget inside the frame. |
col | Left column of the widget inside the frame. |
width | Widget width. |
height | Widget height. |
true when the widget configured the cursor.
frame.cursorVisible = true frame.cursorRow = row frame.cursorCol = col return true