navFormDelete (Function)

Top  Previous  Next

Architecture:

NX32 / NX32L

Firmware version:

4.70 / 1.30.00

Nav. API level:

12


This function will delete a form from the navigation device.

To delete all the forms, use navDeleteData.

 

Input:

id : DINT

ID of the form to delete.

 

 

Returns: INT

0

- Success.

-1

- Navigation interface is not open.

-2

- Error communicating with navigation device.

-4

- The navigation device rejected the command.

-11

- Forms are not supported.

-12

- Navigation interface is busy.

 

Declaration:

FUNCTION navFormDelete : INT;
VAR_INPUT
   id       : DINT;
END_VAR;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NavigationExample;
 
BEGIN
   ...
   // Delete form 55
   navFormDelete(id := 55);
   ...
END;
END_PROGRAM;