Export
Find the syntax, use, parameters, return values, and an example for the Export macro command in Connexion client.
| Syntax | BOOL = CS.Export |
|---|---|
| Use to | Export the current record, or records selected in a list, using your default export destination from Tools > Options > Export. You can export bibliographic or authority records. Or Mark record(s) for batch export if option is set in Tools > Options > Batch. Same as using the Action > Export menu command. |
| Parameters | None |
| Comments | Whether you are logged on or offline, records export immediately, unless you set the Perform local actions in batch option for Record Export in Tools > Options > Batch to mark records for batch export. |
| 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.Export If bResult = True Then |
| What this example does |
|
