NI-DAQmx .NET Framework 4.0 API Reference

Content Type
Programming Language
Current manual
Table of Contents

Timing.Item Property

Timing.Item Property

TimingItem Property

Gets an instance of Timing that contains settings for only the specified devices. In Visual C#, this property is the indexer.

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

Syntax

public Timing this[
	string deviceNames
] { get; }
Public ReadOnly Default Property Item ( 
	deviceNames As String
) As Timing
	Get

Parameters

deviceNames
Type: SystemString
One or more device names that the retrieved Timing class operates on. Use a comma to separate multiple device names. You may pass Empty or to specify all devices in the task.

Property Value

Type: Timing
The specified instance of Timing.

Exceptions

ExceptionCondition
DaqExceptionThe NI-DAQmx driver returned an error.

Remarks

Use the ItemString property to retrieve an instance of Timing that applies only to certain devices in your task. ItemString allows you to set timing properties differently on different devices in your task. If you want to set a property on all devices in the task, you can use the Timing property of the Task class.

This property is only supported by certain National Instruments devices. Please refer to your product-specific documentation to determine which properties, if any, you can set on a device-specific basis.

Some members of the Timing class do not apply to a subset of devices in the task and apply only to the task as a whole. You must call these members on the instance of Timing returned from the Timing property of the Task class. Accessing these members on instances of Timing returned from this property throws an exception. These members include the SinglePoint property, this property, and configuration methods, like ConfigureSampleClock(String, Double, SampleClockActiveEdge, SampleQuantityMode, Int32).

You can use the Devices property to determine what devices are in a task.

See Also

Was this information helpful?