Object Inquiry Built-in Function
Return the row delimiter string for a table.
row delimiter of TABLE_NAME
TABLE_NAME
The identifier for a table.
Description
Use this built-in function to return the row delimiter string; for example, "\n".
Example
response to item RowDelim from Menu
copy (row delimiter of Table) to Str
action CtrlToStr
action GetStrDef
if (InputOK) then
copy "change Table row delimiter to \"" Str "\"" to MsgStr
action SendMsg
if (Str = "\\t") then
copy "\t" to Str
end if
if (Str = "\\n") then
copy "\n" to Str
end if
change Table row delimiter to Str
end if # InputOK