GetNumResColumnNames

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

Syntax

doc.GetNumResColumnNames()

Parameters

None.

Return

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

Note

Python only.

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

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

Examples

Python

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