The table's navigation behavior.
Usage
Set_Property(OLECtrlEntID, "OLE.QuickTabOut", Boolean)
Values
[True | False]
Default: True
Remarks
The QuickTabOut property determines when the user will tab out of the edit table into the next control on a form. By default this value is 1 to allow the user to tab out quickly, which means the user will tab out of the table when the SelPos is anywhere in the last row of the table and that row is empty.
When this value is 0, then the user will only tab out of the table when the SelPos is in the last field of the last record and that record is empty.
Example
// Allow the user to tab out quickly Set_Property(@Window:".OLE_EDITTABLE", "OLE.QuickTabOut", 1) // Allow the user to navigate an empty table freely Set_Property(@Window:".OLE_EDITTABLE", "OLE.QuickTabOut", 0)