DeleteField
Find the syntax, use, parameters, return values, and an example for the DeleteField macro command in Connexion client.
Syntax | BOOL = CS.DeleteField (sTag, nInstance) |
---|---|
Use to | Delete a field by specific tag number and, in the case of repeated variable fields, by order of appearance among the other fields with the same tag number. Same as using the command Edit > Cut Copy Paste > Delete Field. |
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.DeleteField “700”, 2 If CS.DeleteField(“700”, 1) = True Then |
What this example does |
|