
Automation Command and Query Reference Manual - Control Reference
Sets/Queries the destination for hard copy.
' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")
' Set the destination for hard copy to e-mail.
app.Hardcopy.Destination = "EMail"
Send to clipboard for pasting into other applications
Print to a local, or networked printer
Special case used for remote printing, not usually used
Sets/Queries the directory for hard copy to a file.
' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")
' Set the directory for hard copy to files as "D:\HC"
app.Hardcopy.Directory = "D:\HC"
Sets/Queries the e-mail message.
' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")
' Create the e-mail message - "Results for run 89".
app.Hardcopy.EMailMessage = "Results for run 89"
Komentáře k této Příručce