navMessageReplyDelete (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

MX2, AX9, CX1 pro/flex/warp, SX1, MX2 turbo/encore/warp, AX9 turbo, NX-200, NX-400, NX-900, LX2, LX4, LX5

Firmware version:

1.40 / 1.00.00

Nav. API level:

1


This function will remove a text message reply.

When a reply is removed, it is also removed from the reply list of any text messages that is not replied to.

If all allowed replies are removed from a message, the message is treated as a normal message.

 

 

Input:

id : INT

The ID used to identify the reply in navMessageReplyDefine.

 

 

Returns: INT

0

- Success.

-1

- Navigation interface is not opened.

-2

- Error communicating with navigation device.

-4

- The navigation device rejected the command.

-12

- Navigation interface is busy.

 

Declaration:

FUNCTION navMessageReplyDelete : INT;
VAR_INPUT
  ID : INT;
END_VAR;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NavigationExample;
 
BEGIN
  ...
  // Delete a message reply
  navMessageReplyDelete(id := 23);
  ...
END;
END_PROGRAM;