relxDisplayResult
relxDisplayResult (t_sessionName t_file) =>t/nil
Description
Displays the specified result log file.
Arguments
Value Returned
|
For the specified session, returns |
|
Examples
In the example given below, the function searches for relXpert log file in the netlist directory and opens the file when it is found. When the file is found, returns t, else displays a warning message.
session = asiGetCurrentSession()
relxDisplayResult(session "relxpert.log")
=> t
In the example given below, the function searches for relXpert log file at the specified path and opens the file when it is found. When the file is found, returns t, else displays a warning message.
relxDisplayResult(session "/dir/relxpert.log")
=> t
Return to top