spdGetUserAbutProc
spdGetUserAbutProc( ?libNamet_libName) =>r_infoObj/ nil
Description
Returns an object containing the registered user abutment options with associated user callbacks and the description that were registered using the function.
Arguments
|
Name of the library associated with the user abutment.
The default value is |
Value Returned
|
The object containing options, associated user abutment callbacks and the description for the specified library. This information can be queried using the |
|
Example
Register the user abutment and related callbacks.
spdRegUserAbutProc(list("dummyStyle") "MyUserAbutProc" "MyUserAbutCheckProc" "MyUserAbutRestoreProc" ?libName "libA" ?description "user abutment for libA" ?checkOdAbut nil)
=> t
Query the information of current registration.
spdGetUserAbutProc(?libName "libA")~>??
=>
(abutNames
("dummyStyle") abutProc "MyUserAbutProc" checkProc
"MyUserAbutCheckProc" restoreProc "MyUserAbutRestoreProc" description "user abutment for libA" checkOdAbut nil
-
The user abutment name is "
dummyStyle" -
The user callback to perform user abutment in SPD Preview is "
MyUserAbutProc" -
The user callback to reject an invalid user abutment in SPD Edit is "
MyUserAbutCheckProc" -
The user callback to restore the user abutment during round-trip from layout to SPD Edit is "
MyUserAbutRestoreProc" -
The description of the main characteristics for the user callback set is "
user abutment for libA" -
The value of
checkOdAbutisnil.
Related Topics
Return to top