Write/Read
About DC Sources

LimitMax Property


Description

Sets and returns the Max DC limit value for a DC source.

 VB Syntax

dc.LimitMax(deviceName) = value

Variable

(Type) - Description

dc

A DCStimulus (object)

deviceName

(String) Name of the "DC source"

Use Source Property to read a list of configured DC source names.

value

(Double) Max DC limit value. Choose a value within the range of the DC source.

Return Type

Double

Default

10

Examples

dc.LimitMax("myDCSource") = 10 'Write

value = dc.LimitMax("myDCSource") 'Read

C++ Syntax

HRESULT get_LimitMax(BSTR deviceName, double* value);

HRESULT put_LimitMax(BSTR deviceName, double value);

Interface

IDCStimulus2