ChangeRecordType
Find the syntax, use, parameters, return values, and an example for the ChangeRecordType macro command in Connexion client.
Syntax | BOOL = CS.ChangeRecordType (nRecordType) |
---|---|
Use to | Change the MARC format of a record to another type. |
Parameters | For nRecordType, enter one of the following numbers, depending on which format you want to apply to the current record:
|
Return values | TRUE if the record changes to the specified format, or FALSE if not. |
Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” If CS.ChangeRecordType 1 = True Then |
What this example does |
|