NI-DAQmx .NET Framework 4.0 API Reference

Content Type
Programming Language
Current manual
Table of Contents

PauseTrigger.ConfigureAnalogLevelTrigger Method

PauseTrigger.ConfigureAnalogLevelTrigger Method

PauseTriggerConfigureAnalogLevelTrigger Method

Configures the task to pause acquisition or generation when an analog signal is above or below a level you specify.

Namespace:  NationalInstruments.DAQmx
Assembly:  NationalInstruments.DAQmx (in NationalInstruments.DAQmx.dll) Version: 20.7.40.49302

Syntax

public void ConfigureAnalogLevelTrigger(
	string source,
	AnalogLevelPauseTriggerCondition condition,
	double level
)
Public Sub ConfigureAnalogLevelTrigger ( 
	source As String,
	condition As AnalogLevelPauseTriggerCondition,
	level As Double
)

Parameters

source
Type: SystemString
The name of a virtual channel or terminal where there is an analog signal to use as the source of the trigger.
condition
Type: NationalInstruments.DAQmxAnalogLevelPauseTriggerCondition
Specifies if the task pauses acquiring and generating samples when the signal is below level or above level.
level
Type: SystemDouble
The analog threshold level, in the units of the measurement or generation. Use condition to specify if the task pauses above or below this threshold.

Exceptions

ExceptionCondition
DaqExceptionThe NI-DAQmx driver returned an error.

Remarks

The NI-DAQmx driver does not determine if the requested settings are possible until the task is verified. ConfigureAnalogLevelTrigger(String, AnalogLevelPauseTriggerCondition, Double) does not throw an exception for parameter values that are not compatible with your hardware or other settings in your task. To determine if all of the settings for a Task are valid, you must verify the task by starting the task, either with Start or by reading from or writing to the task, or by calling Control(TaskAction) with Verify.

See Also

Was this information helpful?