AddFieldLine
Find the syntax, use, parameters, return values, and an example for the AddFieldLine macro command in Connexion client.
Syntax | BOOL = CS.AddFieldLine (nLineNumber, sData) |
---|---|
Use to | Add a variable field to the current record in a specific field position specified by line number, with each field representing one line. |
Parameters |
|
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” CS.AddFieldLine 1, “500 Field added at line position 1” If CS.AddFieldLine(3, “500 Field added at line position 3”) = True Then CS AddFieldLine 999, “500 Field added as last line of record” |
What this example does |
|