The 'CsvBlockGet' function copies the current tag value to the CsvBlock's memory. (The tag order is determined by the 'SQL BindList' file.)
void @CsvBlockGet(int id, string bindlist, int pos);
Parameters
int id : id assigned by CsvBlockLoad() or CsvBlockNew()
string bindlist : 'SQL BindList' file (file that you set by using Studio menu[Config | SQL Bind List])
int pos : position of the row
Return Value
None
Example
@CsvBlockGet($ID, "ex.txt", $Number);
$Number = $Number+1;
@CsvBlockSet($ID, "ex.txt", $Number);
Description : The current tag value is stored in the CsvBlock's memory and the CsvBlock's memory data of the next row is stored in tag.
Relate items)