CircuitParameterValue
- Updated2026-03-24
- 1 minute(s) read
The value of a circuit parameter to get/set.
Syntax
Property CircuitParameterValue ( _
ByVal
CircuitParameterName As String) _
As Double
Parameters
CircuitParameterName—The name of the circuit parameter to get/set.
Remarks
This read/write property allows the user to get/set the value of a circuit parameter.
If the circuit parameter does not exist in the circuit, an error occurs.
Attempting to change circuit parameter values while a simulation is running causes an error. The simulator must be in the stopped state.
If a circuit parameter contains an expression, it will be evaluated first. For example if x=1, x+1 will return 2, not “x+1”. If an error occurs, 0 will be returned.
When setting a circuit parameter value, only numeric values are supported, not expressions.
To access parameters inside sub-sheets, use:
<HB/SC refdes>.<parameter name>
For example, SC1.Vin
See Also