navFormAbort (Function)

Top  Previous  Next

Architecture:

NX32 / NX32L

Device support:

MX2 turbo/encore/warp, AX9 turbo, NX-200, NX-400, NX-900, LX2, LX4, LX5

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;