
Automation Command and Query Reference Manual - Control Reference
Show the instrument display in the current color scheme selected for printing.
' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")
' Show the current color scheme selected for printing.
app.Display.PreviewPrintColors
Sets/Queries the style in which traces are drawn.
' Visual Basic Script
Set app = CreateObject("LeCroy.XStreamDSO")
' Read the state of the persistence mode.
TraceStyle = app.Display.TraceStyle
Connect adjacent samples with straight lines
Show only the sample points
Root Automation node to control Electrical Telecom (ET-PMT) package. This package is performing Pulse Mask Test
on diferent SONET/SDH standards.
' Visual Basic Script
Set app = CreateObject("LeCroy.WaveMasterApplication.1")
'Select an stadard, run the test and get results after a while
app.ElectricalTelecom.Standard = "E1Tp"
app.ElectricalTelecom.Source = "C2"
app.ElectricalTelecom.Setup
app.ElectricalTelecom.Run
app.Sleep 10000
app.ElectricalTelecom.Pause
passed = CStr(app.ElectricalTelecom.NumPass)
tested = CStr(app.ElectricalTelecom.NumTested)
MsgBox passed + " passed of " + tested + " tests"
Komentáře k této Příručce