DeleteHoldings
Find the syntax, use, parameters, return values, and an example for the DeleteHoldings macro command in Connexion client.
Syntax | BOOL = CS.DeleteHoldings |
---|---|
Use to | Delete your holdings (OCLC symbol) from the current record or from records selected in a list. Same as using the Action > Holdings > Delete Holdings menu command. |
Parameters | None |
Comments |
|
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object CS.Search “WC”, “#1” bResult = CS.DeleteHoldings If bResult = True Then |
What this example does |
|