DeleteFieldLine
Find the syntax, use, parameters, return values, and an example for the DeleteFieldLine macro command in Connexion client.
Syntax | BOOL = CS.DeleteFieldLine (nLineNumber) |
---|---|
Use to | Delete a field in a field position specified by line number, with each field representing one line. |
Parameters | For nLineNumber, enter the field position (line number) of the field you want to delete. |
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.DeleteFieldLine 1 If CS.DeleteFieldLine(1) = True Then |
What this example does |
|