The CommandLine function returns the argument section of the command line.
Syntax | |
CommandLine() | |
Return value | |
Type |
Description |
String |
Content of the argument section |
Parameter | |
None |
Example:
Supposed that the TCE client starts with an additional parameter in the argument section:
-DBServer=Server01
Then the argument section can be evaluated via the CommandLine function:
Dim Value As String
Value := Client.CommandLine
After execution the content of Value is
-DBServer=”Server01”