Copy
Find the syntax, use, parameters, return values, and an example for the Copy macro command in Connexion client.
| Syntax | CS.Copy (nStartRow, nStartColumn, nEndRow, nEndColumn) |
|---|---|
| Use to | Copy specified text to the clipboard. Same as using the command Edit > Cut Copy Paste > Copy. |
| Parameters |
|
| Comment |
|
| Return values | None |
| Example | Sub Main() Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” CS.Copy 2, 1, 2, 10 |
| What this example does |
|
