maeExportRunPreview
maeExportRunPreview(
?session t_sessionName
?fileName t_fileName
)
=> t / nil
Description
Exports the Run Preview table to the specified CSV file. The default location of this file is path-to-cellview/documents.
Arguments
|
t_sessionName
|
The name of the session from which the run preview table is to be exported. If not specified, the current session is used.
|
|
t_fileName
|
Path to the CSV file to which the run preview table is to be exported.
By default, the tool saves the table in runPreviewTable.csv in the libName/cellName/viewName/documents directory.
If you specify the file name without a path, it is saved in the libName/cellName/viewName/documents directory.
|
Value Returned
|
t
|
The run preview table is exported to the specified CSV file.
|
|
nil
|
The current run mode is not supported for run preview.
|
Examples
Exports the run preview table to the specified CSV file.
maeExportRunPreview(?session maeGetDefaultSession() ?fileName "check.csv")
=> t
Return to top