Skip to main content
OCLC Support

Reformat

Find the syntax, use, parameters, return values, and an example for the Reformat macro command in Connexion client.
Syntax BOOL = CS.Reformat
Use to Reformat a record (record redisplays with fields in correct order).

Same as using the Edit > Reformat menu command.
Parameters None
Comments You must have a record open to run this macro.
Return values TRUE if the action is successful, or FALSE if not.
Example Sub Main()

     Dim CS As Object
     Set CS = GetObject(,“Connex.Client”)

     CS.Reformat
End Sub

What this example does
  • Reformats the current record in correct tag order.
  • Does not reset the automatic logoff timer.