SaveAs
- Updated2026-03-24
- 1 minute(s) read
Saves the current Multisim circuit to a specific location.
Syntax
Function SaveAs (ByVal FileName As String) _
As String
Parameters
FileName—Indicates where the circuit should be saved.
Remarks
The fully-qualified path of the saved circuit is returned. It is blank if the save fails.
If the circuit cannot be saved, an error occurs.
Attempting to save the circuit while a simulation is running causes an error. The simulator must be in the stopped state.
Example
Dim FileName As String
FileName = Circuit.SaveAs("C:\temp\circuit.ms14")
See Also