ApplyCDFromList
Find the syntax, use, parameters, return values, and an example for the ApplyCDFromList macro command in Connexion client.
| Syntax | BOOL = CS.ApplyCDFromList ( nListIdx, nOption) |
|---|---|
| Use to | Apply a constant data record from a list to the currently displayed bibliographic or authority record. Same as using one of the following menu commands:
|
| Parameters |
|
| Comments | You must have a list of constant data records open to use this command. The list index is 1-based. |
| Return values | TRUE if the action is successful, or FALSE if not. |
| Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” If CS.ApplyCDFromList(3, 1) = True Then |
| What this example does |
|
