Use to create a text file in CSV (Character Separated Values) format. This means that the individual entries are separated by commas ‘,’ or semicolons ‘;’. (The separator can be set under ).With these text data, information about variables can later be imported in external programs, e.g. for process visualization.
Syntax example of the data in the *.CSV file:
----------------------------------
...
LIBNAME, Project
VARNUMBER,1
VAR_GLOBAL,start,%IX0.0,X0,BOOL,FALSE,"start for addition"
...
LIBNAME, Project
POUNAME,Prg_Addition
VARNUMBER,2
VAR_EXTERNAL,start,,X0,BOOL,FALSE,"start for addition"
VAR,Counter,,DT165,INT,0,"counter variable"
...
----------------------------------