Sets the zoom level of the view of a BrainVoyager project file (FMR, VMR, AMR).
objDocument.SetZoomLevel(intZoomLevel)
Valid for all doument types: objDocument can be a VMR, FMR or AMR project. If an FMR project is saved, the current zoom level is stored with the file; when the file is reloaded, the previously stored zoom level is used to display the project's images. This kind of persistence is not supported by AMR AMR and VMR files.
' VBScript
Set doc = BrainVoyager.OpenDocument("cg_objects.fmr")
doc.SetZoomLevel 2
doc.Save
// JScript
doc = BrainVoyager.OpenDocument("cg_objects.fmr");
doc.SetZoomLevel(2);
doc.Save();
# PerlScript
$doc = $BrainVoyager->OpenDocument("cg_objects.fmr");
$doc->SetZoomLevel(2);
$doc->Save();