spdGetAbutName
spdGetAbutName(x_strategy[ ?libNamet_libName] ) =>t_abutName/ nil
Description
Returns the user abutment name associated with the specified abutment strategy registered using the function.
Arguments
Value Returned
|
Name of the user abutment for the specified library associated with the given abutment strategy. |
|
Example
Register 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 user abutment name associated with the abutment strategy 3and library libA.
spdGetAbutName(3 ?libName "libA")
=> "dummyStyle2"
Related Topics
Return to top