spdGetAbutStrategy
spdGetAbutStrategy(t_abutName[ ?libNamet_libName] ) =>x_strategy/ nil
Description
Returns the abutment strategy associated with the specified user abutment name registered using the function.
Arguments
|
Name of the library associated with the user abutment. |
Value Returned
|
The abutment strategy associated with the specified user abutment name and library. |
|
Example
Registers the user abutment name and abutment strategy pairs.
; abutment name : abutment strategy
; "dummyStyle1" : 2
; "dummyStyle2" : 3
spdRegUserAbutProc(list(list("dummyStyle1" 2) list("dummyStyle2" 3)) "MyUserAbutProc" "MyUserAbutCheckProc" "MyUserAbutRestoreProc" ?libName "libA")
=> t
Query the abutment strategy associated with the user abutment name dummyStyle2 and library libA
spdGetAbutStrategy("dummyStyle2" ?libName "libA")
=> 3
Related Topics
Return to top