Please enable JavaScript to view this site.

ESL Documentation

Object Inquiry Built-in Function

Return the values of all the cells in a row.

textual row ROWNUM of TABLE_NAME

ROWNUM

The number of the row.

TABLE_NAME

The identifier for a table.

Description

Use this built-in function to return a string containing the values in all the cells in the row, separated by the column delimiter.

Example

 

response to item BTextRow_MC from Menu_AB

 action GetRow

 if (InputOK_BV) then

         copy (textual row Row_IV of Table) "\"" to Text_SV

         copy "textual row " Row_IV " of Table = \""

             Text_SV "\"" to MsgStr_SV

         action SendMsg

 end if

See Also

table Object Definition