table.gotoAddress

Syntax table.gotoAddress (addr)

Params addr is an Object Database address.

Action Opens up the table that contains addr, and moves the cursor to it.

Returns True if addr is a valid address, false otherwise.

Examples table.gotoAddress (@examples.list1)

   » true

table.gotoAddress (@examples.age)

   » true

table.gotoAddress(@noSuchAddress)

   » false

Notes The behavior of table.gotoAddress is different from the basic verb edit, which will zoom out the object's window if it has one.

Unlike the other table.goToXXX verbs, table.gotoAddress does not operate on the target window, since a full address is provided.

See Also table.getCursor

table.go

table.goto

table.gotoName

Discuss