Write/Read |
About Auxiliary Triggering |
Description |
Specifies whether the Aux trigger out signal is sent Before or After the acquisition. |
VB Syntax |
auxTrig.TriggerOutPosition = value |
Variable |
(Type) - Description |
auxTrig |
An AuxTrigger (object) |
value |
(enum NATriggerPosition) Choose from: naTriggerOutBeforeAcquire Use if the external device needs to be triggered before the data is acquired, such as a power meter. naTriggerOutAfterAcquire Use if the external device needs to be triggered just after data has been acquired, such as an external source. This could be more efficient since it allows the external device to get ready for the next acquisition at the same time as the VNA. |
Return Type |
Enum |
Default |
naTriggerOutAfterAcquire |
Exaamples |
auxTrig.TriggerOutPosition = naTriggerOutAfterAcquire 'Write |
value = auxTrig.TriggerOutPosition 'Read the value |
|
C++ Syntax |
HRESULT get_TriggerOutPosition(enum NATriggerPosition *val); |
Interface |
IAuxTrigger |