GetNumResSummaryColumnName
Returns the name of the specified column of the Numerical Results Summary Window of the first graphical view of the document.
Syntax
GetNumResSummaryColumnName(doc, col)
Parameters
Parameter |
Type |
Description |
---|---|---|
doc |
documentReference |
Reference to the document |
col |
number |
1-based column number. |
Return
Returns the name of the column of the Numerical Results Summary Window of the first graphical view of the document.
Examples
Python
import nex
doc = nex.GetActiveDocument()
nex.ApplyTemplate(doc, "PerieventHistograms")
# get the name of the third column in Numerical Results Summary
colName = nex.GetNumResSummaryColumnName(doc, 3)
NexScript
doc = GetActiveDocument()
ApplyTemplate(doc, "PerieventHistograms")
% get the name of the third column in Numerical Results Summary
colName = GetNumResSummaryColumnName(doc, 3)