Action
Saves the values of cells in a specified range in a table to a tab-delimited file.
Availability
This functionality is supported only if you are using the Classic Agent.
Syntax
table.GetFileRangeValue (sPath, Range)
Variable
|
Description
|
sPath
|
The pathname of the file to save.
STRING.
|
Range
|
The range of the table to save in the file.
TABLERANGE.
|
Notes
The values for each row are written to one line in the file. Lines greater than 4k are truncated. This method creates files in ANSI format.
Example
TABLERANGE emp_range = {{"1","id"}, {"3","salary"}}
EmpForm.EmpTable.GetFileRangeValue("emp.dat", emp_range)