NI-DAQmx .NET Framework 4.5 API Reference

AIChannel.BridgeTablePhysicalValues Property

  • Updated2023-02-21
  • 1 minute(s) read
AIChannel.BridgeTablePhysicalValues Property
Specifies the array of physical values that map to the values in BridgeTableElectricalValues. Specify this value in the unit indicated by BridgePhysicalUnits.

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

Syntax

public double[] BridgeTablePhysicalValues { get; set; }
Public Property BridgeTablePhysicalValues As Double()
	Get
	Set

Property Value

Type: Double
Specifies the array of physical values that map to the values in BridgeTableElectricalValues. Specify this value in the unit indicated by BridgePhysicalUnits.

Exceptions

ExceptionCondition
DaqExceptionThe NI-DAQmx driver returned an error.

Remarks

This property returns a copy of the actual array. Avoid calling this property within a for loop because it creates a copy for each iteration of the loop. Avoid using an indexer to set a member of the array because the indexer returns a copy of the object and has no effect on the actual object.

See Also