Find the syntax, use, parameters, return values, and an example for the Print macro command in Connexion client.
| Syntax | BOOL = CS.Print |
|---|---|
| Use to | Print the current (topmost) record. Same as using the menu command File > Print. |
| Parameters | None |
| Comments | Uses your default printer in Windows, unless you previously set the option in Tools > Options > Printing to print records to a text file. |
| 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.Print() = True Then |
| What this example does |
|
