dbAbutIsInteractive
dbAbutIsInteractive( ) => t / nil
Description
This function is used by user-defined abutment functions. It indicates if the call to the abutment function was triggered by an interactive action.
Arguments
Value Returned
|
Returns |
Examples
Following abutment function uses the dbAbutIsInteractive SKILL function:
userAbutFunction(
...
case 1: ...
case 2: ;; this is where abutment happens
...
dbAbutIsInteractive()
...
)
The SKILL function returns t if the abutment is triggered by an interactive action such as a move command. It returns nil if the abutment is triggered by a non-interactive action such as chaining.
Related Topics
Pcell Abutment Support Functions
Return to top