name

Type: String[100]

The read-only name property of the SchemaEntity class contains the name of the schema entity. The code fragment in the following example shows the use of the name property.

foreach obj in coll do
    if not (obj = self or obj = caller) then
        count.bump;
        found := true;
        if count = 1 then
            write 'Class - ' & cls.name;
        endif;
        write '  Transient - ' & obj.String;
    endif;
endforeach;