maeGetResultsViewSelectedCellsDetails
maeGetResultsViewSelectedCellsDetails(t_sessionName) =>l_resultData/l_faultResultData/nil
Description
Returns a list of data point ID, test name, and output name for each result value selected in the Detail, Detail-Transpose, or Fault results view of the currently visible run history. If the selected cell is in the column that does not show any results value, for example, Test or Output, no data is returned from that.
For the Detail-Transpose View, the function returns data only for the cells selected in the right pane.
Arguments
Value Returned
Examples
The following example returns the values for the cells selected in the Results pane.
maeGetResultsViewSelectedCellsDetails("fnxSession0")
=>(
(3 "Oscillator_analysis" "/out")
(1 "Oscillator_analysis" "RiseTime")
(4 "Oscillator_analysis" "FallTime")
(8 "Oscillator_analysis" "FallTime")
(11 "Oscillator_analysis" "/out")
(7 "Oscillator_analysis" "RiseTime")
)
The following example uses the value returned by maeGetResultsViewSelectedCellsDetails to access the netlist directory:
t_sessionName = axlGetWindowSession( hiGetCurrentWindow())
resultsView = maeGetResultsViewSelectedCellsDetails(t_sessionName)
resultsViewOneList = car(resultsView)
testName = nth(1 resultsViewOneList)
netlistDir = axlGetPointNetlistDir(historyEntry testName)
Return to top