navFormAbort (Function)

Top  Previous  Next

Architecture:

NX32 / NX32L

Firmware version:

4.70 / 1.30.00

Nav. API level:

12


This function will abort the construction of a custom form.

 

 

Input:

None.

 

 

Returns: INT

0

- Success.

-1

- The form was not open.

 

Declaration:

FUNCTION navFormAbort : INT;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NavigationExample;
 
BEGIN
   ...
   // Abort construction of a form.
   navFormAbort();
   ...
END;
END_PROGRAM;