Defines a grid of rows and columns in which multiple images of an FMR or AMR project are shown.
objDocument.SetLayoutRowsCols(intRows, intCols)
Only valid if objDocument is of type FMR or AMR. If an FMR project is saved, the current layout is stored with the file; when the file is reloaded, the previously stored layout (number of rows and columns) is used to display the project's images. This kind of persistence is not supported by AMR files.
' VBScript
Set doc = BrainVoyager.OpenDocument("cg_objects.fmr")
doc.SetLayoutRowsCols 3, 5
doc.Save
// JScript
doc = BrainVoyager.OpenDocument("cg_objects.fmr");
doc.SetLayoutRowsCols(3, 5);
doc.Save();
#
PerlScript
$doc = $BrainVoyager->OpenDocument("cg_objects.fmr");
$doc->SetLayoutRowsCols(3, 5);
$doc->Save();