-- Syntax.TXT
Syntax: (Four Different Scenarios)

-- When Input/Output Data is a VARIABLE
   PLUGIN RRTFtoTXT.RBL vResult +
   |INPUT_TYPE VARIABLE +
   |INPUT_VARIABLE inputvarname +
   |OUTPUT_TYPE VARIABLE +
   |OUTPUT_VARIABLE outputvarname +
   |OUTPUT_DATA_TYPE value

   WHERE:
   . vResult is the resulting message value, such as, "OK" 
     or the actual "-ERROR- message".
   . INPUT_VARIABLE inputvarname is the input RTF data as 
     variable
   . OUTPUT_VARIABLE outputvalue is the resulting output 
     variable name with converted data
   . OUTPUT_DATA_TYPE value is the data type (TEXT, NOTE, 
     or VARCHAR) 

-- When Input/Output Data is an external FILE
   PLUGIN RRTFtoTXT.RBL vResult +
   |INPUT_TYPE FILE +
   |INPUT_FILE inputfilename.rtf +
   |OUTPUT_TYPE FILE +
   |OUTPUT_FILE outputfile.txt +
   |OUTPUT_DATA_TYPE value

   WHERE:
   . vResult is the resulting message value, such as, "OK" 
     or the actual "-ERROR- message".
   . INPUT_FILE inputfilename.rtf is the input RTF file name
   . OUTPUT_FILE outputfilename.txt is the resulting output 
     file with converted data
   . OUTPUT_DATA_TYPE value is the data type (TEXT, NOTE, 
     or VARCHAR) 

-- When Input is a VARIABLE and Output is an external FILE
   PLUGIN RRTFtoTXT.RBL vResult +
   |INPUT_TYPE VARIABLE +
   |INPUT_VARIABLE inputvarname +
   |OUTPUT_TYPE FILE +
   |OUTPUT_FILE outputfilename.txt +
   |OUTPUT_DATA_TYPE value
   WHERE:
   . vResult is the resulting message value, such as, "OK" 
     or the actual "-ERROR- message".
   . INPUT_VARIABLE inputvarname is the input RTF data as 
     variable
   . OUTPUT_FILE outputfilename.txt is the resulting output 
     file with converted data
   . OUTPUT_DATA_TYPE value is the data type (TEXT, NOTE, 
     or VARCHAR)

-- When Input is a an external FILE and Output is a VARIABLE
   PLUGIN RRTFtoTXT.RBL vResult +
   |INPUT_TYPE FILE +
   |INPUT_FILE inputfilename.rtf +
   |OUTPUT_TYPE VARIABLE +
   |OUTPUT_VARIABLE outputvarname +
   |OUTPUT_DATA_TYPE value
   WHERE:
   . vResult is the resulting message value, such as, "OK" 
     or the actual "-ERROR- message".
   . INPUT_FILE inputfilename.rtf is the input RTF file name
   . OUTPUT_VARIABLE outputvarname is the resulting output 
     variable name with converted data
   . OUTPUT_DATA_TYPE value is the data type (TEXT, NOTE, 
     or VARCHAR) 

Notes:

. Use RRTFtoTXT.RBL for R:BASE 7.5 for Windows
. Use RRTFtoTXT76.RBL for R:BASE 7.6 for Windows
. Use RRTFtoTXT76.RBL for R:BASE C/S:I 7.6 for Windows
. Use RRTFtoTXT80.RBL for R:BASE Turbo V-8 for Windows
. RRTFtoTXT Plugin is included with R:BASE Plugin Power Pack
