IsHeldBy
Find the syntax, use, parameters, return values, and an example for the IsHeldBy macro command in Connexion client.
Syntax | BOOL = CS.IsHeldBy (sSymbol, sState) |
---|---|
Use to | Determine whether a specified holding symbol (OCLC institution symbol) is included in the current record. |
Parameters |
|
Comments | You must be logged on to run this macro. |
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.IsHeldBy(“OCL”, sState) = True Then End Sub |
What this example does |
|