Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterDescription
functionA valid RTI_List function: READ, DELETE.
listIDName of the saved list (or Key ID) in the SYSLISTS table.
param1...Each method has different parameter requirements.
param4 
functions
ValueDescription
READReads all the Key IDs from the indicated saved list and returns them as an @FM delimited array.
DELETEDeletes the indicated saved list.
Parameters
FunctionParameters
READNullbAutoDelete - Flag that determines if the saved list should be deleted automatically after the READ function is invoked.
DELETENull

Returns

MethodReturn Value
READAn @fm-delimited array of Key IDs.
DELETENull

...

Code Block
* READ Example
DECLARE FUNCTION RTI_LIST, RTI_CREATEGUID
myID = RTI_CREATEGUID("b") ;* MAKE A GUID IN BASE64 FORMAT
CALL RLIST(selStmt, 4, myID, "", "")
fullList = RTI_LIST("READ", myID) 
* GETSYSTEMFONTS Example
systemFonts = Rev_Utility("GETSYSTEMFONTS")
 
* DELETE Example
CALL RTI_LIST("DELETE", myID)