Method: IsOutputConnected for Input
- Updated2024-09-12
- 1 minute(s) read
Calculations > Methods > Method: IsOutputConnected for Input
Method: IsOutputConnected for Input
Specifies whether the input of a calculation is dependent on an output of a different calculation.
bIsOutputConnected = Object.IsOutputConnected
| Object | Input Object with this method |
| bIsOutputConnected | Boolean If the input of an output is dependent on an output, the IsOutputConnected method returns the value TRUE otherwise FALSE. |
The following example displays a message if the first input of the third calculation is dependent on an output:
| VBScript | Python |
Dim oMyInput Set oMyInput = CalculationSet.CalculationGroups(1).Calculations(3).Inputs(1) If oMyInput.IsOutputConnected Then Call MsgBoxDisp("Output connected: " & oMyInput.SourceOutput.Calculation.Name) End If
See Also
Procedures
Connecting Channels and Values in Calculations | Creating a Calculation Script with Debug Option | Creating and Executing Calculations | Executing Calculations Multiple Times | Using Channel Lists in Calculations | Working with Dependent Inputs
Examples
Calculating the Sound Pressure Level with Calculation Templates