| Syntax |
table.gotoName (name)
|
| Params |
name is a string consisting of the name of a cell in the target window.
|
| Action |
Moves the table cursor to the cell with the indicated name in the target window.
|
| Returns |
True if there is a cell with that name in the frontmost table window, false otherwise.
|
| Examples |
With the examples table open and frontmost, type and execute:
table.gotoName ("todolist")
» true
Table cursor is positioned at root.examples.todolist
Open the "todolist" in the examples table so that it is frontmost, then type and execute:
target.set(@examples)
table.gotoName("funStuff")
An error message results because the target window is not a table.
|
| Notes |
Name is not an address. It is a string containing an entry which Frontier assumes will be found in one of the "Name" cells of the target table window.
|
| See Also |
table.getCursor
table.go
table.goto
table.gotoAddress
|