Xbasic
OBJECT.LEFT Function
Syntax
<OBJECT>.LEFT()
Description
Moves the focus to the left.
Discussion
The <OBJECT>.LEFT() method applies to:
- Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
- Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)
The <OBJECT>.LEFT() method moves the focus to the left as if the user had pressed the "Left" key.
Example
dim ptr as P ptr = form.load("Customer Information") ptr.left()
Limitations
Desktop applications only.
See Also