Please enable JavaScript to view this site.

ESL Documentation

Special Inquiry Built-in Function

Return the name of the current class element in a for each member loop.

member

Description

ESL returns a string value representing the name (identifier) of the current member.

Example

 

copy false to InClass

for each member of CLASS loop

 if (member = OBJ1) then # check to see if OBJ1 is

         copy true to InClass # in this class

         leave loop

 end if

end loop

See Also

for each member loop Action Statement