ClearOutputRequest
- Updated2026-03-24
- 1 minute(s) read
Clears, or cancels, an output request for the probe specified.
Syntax
Sub ClearOutputRequest ( _
ByVal outputName As String)
Parameters
outputName—The name of a Multisim probe.
Remarks
If a simulation is taking too long, or is not producing desired outputs, you can use ClearOutputRequest to cancel the rest of the simulation and adjust the settings.
If outputName is a blank string, the pending data for all outputs is cancelled.
Attempting to clear an output that has not been set, using SetOutputRequest, results in an error.
Example
' Clear specific output
Circuit.ClearOutputRequest "V(Input)"
' Clear all outputs
Circuit.ClearOutputRequest ""
See Also