Send print information to a file
- Last UpdatedJul 26, 2024
- 1 minute read
You can send a listing of the entire InTouch application to a printer or to a text file. If the InTouch window contains Industrial Graphics then the output will be sent to an HTML file.
The following example command file prints application information to the printer named Printer01:
.WINDOWMAKERCOMMANDFILE
.VERSION=1
.PRINTAPPLICATIONINFORMATION
.OUTPUTTARGET=Printer
.OUTPUTTARGETNAME=Printer01
.GO
The following is an example command file that prints to a file. If the file exists, it is overwritten.
.WINDOWMAKERCOMMANDFILE
.VERSION=1
.PRINTAPPLICATIONINFORMATION
.OUTPUTTARGET=TextFile
.OUTPUTTARGETNAME=C:\MyApps\AppInfo.txt
.GO