Save Method


Description

Saves a BrainVoyager project file using the current file name.

Syntax

objDocument.Save()

Remarks

Saves the referenced document to disk using the file name in the PathName property of objDocument.

Example

' VBScript
Set doc = BrainVoyager.
OpenDocument("cg_objects.fmr")
doc.
LinkStimulationProtocol "cg_exp_r1.prt"
doc.
Save

// JScript
doc = BrainVoyager.
OpenDocument("cg_objects.fmr");
doc.
LinkStimulationProtocol("cg_exp_r1.prt");
doc.
Save();

# PerlScript
$doc = $BrainVoyager->
OpenDocument("cg_objects.fmr");
$doc->
LinkStimulationProtocol("cg_exp_r1.prt");
$doc->
Save();