GetNumResSummaryColumnNames

Returns the list of column names in the Summary of Numerical Results Window of the first graphical view of the document.

Syntax

doc.GetNumResSummaryColumnNames()

Parameters

None.

Return

Returns the list of column names in the Summary of Numerical Results Window of the first graphical view of the document.

Note

Python only.

You can also use global function nex.GetNumResSummaryColumnNames(doc):

import nex
doc = nex.GetActiveDocument()
nex.ApplyTemplate(doc, "PerieventHistograms")
names = nex.GetNumResSummaryColumnNames(doc)

Examples

Python

import nex
doc = nex.GetActiveDocument()
nex.ApplyTemplate(doc, "PerieventHistograms")
names = doc.GetNumResSummaryColumnNames()