IFPathConfiguration Setup


The following demonstrates how to:

See the entire list of IF Path Configuration settings.

' Create / Get the PNA application

Dim app

Set app = CreateObject("AgilentPNA835x.Application")

' Preset the instrument

app.Preset

' Get a channel interface on which to operate

Dim chan

Set chan = app.ActiveChannel

' Set the Source 1 Pulse Mod to enable

chan.PathConfiguration.Element("Src1Out1PulseModEnable").Value = "Enable"

' Set the Source 2 Pulse Mod to disable

chan.PathConfiguration.Element("Src2Out1PulseModEnable").Value = "Disable"

' Set the Pulse Mod drive to Pulse1

chan.PathConfiguration.Element("PulseModDrive").Value = "Pulse1"