up previous next
Tag

returns the tag string of an object

Syntax
Tag(E:OBJECT):STRING

Description
If E is a tagged object, this function returns the tag of E; otherwise, it returns the empty string.

Example
L := Tagged(3,"MyTag");
Type(L);
TAGGED("MyTag")
-------------------------------
Tag(L);
MyTag
------------------------------- 


See Also