BYTE.getLength

Returns the length of BYTE content.

Syntax

getLength( )
   RETURNS INTEGER

Usage

This method returns the number of bytes in BYTE data.

Example

MAIN
  DEFINE b BYTE
  LOCATE b IN MEMORY
  CALL b.readFile("mydata.bin")
  DISPLAY t.getLength()
END MAIN