mdtClearLine (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

All

Firmware version:

1.02 / 1.00.00


Clears the contents of the line with the current write position in the display. After this call, the current write position will be set to left of the line.

 

Input:                

None.

 

Returns: INT

0

- Success.

-1

- MDT not present or communication error.

-2

- MDT not open.

 

Declaration:

FUNCTION mdtClearLine : INT;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
  ...
  // Clear line
  mdtClearLine();
  ...
END;
END_PROGRAM;