GetFieldLine
Find the syntax, use, parameters, return values, and an example for the GetFieldLine macro command in Connexion client.
| Syntax | BOOL = CS.GetFieldLine (nLineNumber, sData) |
|---|---|
| Use to | Get the data for a field in a field position specified by line number, with each field representing one line. |
| Parameters |
|
| Comments | Retrieving data that contains non-Latin script characters using this macro command returns a message: Data contains non-Latin script. Use the GetFieldLineUnicode command instead for retrieving data with non-Latin scripts. |
| Return values | TRUE if the action is successful, or FALSE if not. |
| Example | Sub Main() Dim CS As Object Dim sData as String CS.Search “WC”, “#1” CS.GetFieldLine 4, sData |
| What this example does |
|
