maeExportCornersToSDB
maeExportCornersToSDB(
t_sessionName
t_SDBFilePath
)
=> t / nil
Description
Exports corners from a maestro cellview to the given file in SDB format.
Arguments
|
t_sessionName
|
Name of the session.
If not specified, the corners are exported from the current session.
|
|
t_SDBFilePath
|
Path of the file to which the corners are to be exported. If no relative or absolute path is specified, the file is created in the current working directory. The .sdb extension is automatically appended to the name of the file.
|
Value Returned
|
t
|
The corners are exported to the SDB file.
|
|
nil
|
The corners are not exported.
|
Examples
Exports the corners from the current maestro session to the file corners1.sdb:
maeGetSessions()
=>("fnxSession0")
maeCornersToCSV("fnxSession0" "corners1")
=> t
Return to top