The TEXT data type as class / TEXT data type methods |
Returns the length of a TEXT content.
getLength( ) RETURNING result INTEGER
This method returns the number of bytes of the TEXT data.
MAIN DEFINE t TEXT LOCATE t IN MEMORY DISPLAY t.getLength() END MAIN