Saves the current Multisim circuit.

Syntax


Function Save () _
       As String

Remarks

This method is used to save the current Multisim circuit. If the circuit cannot be saved, an error occurs.

The Save method overwrites the existing file. To preserve the original file, use SaveAs instead.

The fully-qualified path of the saved circuit is returned. It is blank if the save fails.

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.Save()

See Also

OpenFile

SaveAs