<data_load> Loads textual data from file (whole the content) and saves them in variable for other processing within the macro.
Command Tree: | File \ Load Data | ||||||||||||
. | |||||||||||||
Syntax: | <data_load>("Variable",
"File", "Reserved")
|
||||||||||||
. | |||||||||||||
. | |||||||||||||
Example: | <#> This macro loads the
file content to variable <#> <commands_only_on> <varset>("vFileData=_vStrEmpty","") <varchng>("vFile","SF","") <data_load>("vFileData","vFile","") <msg>(100,100,"vFileData","File Content",1) |