GetNumResSummaryNRows
Returns the number of rows of the Numerical Results Summary Window of the first graphical view of the document.
Syntax
GetNumResSummaryNRows(doc)
Parameters
Parameter |
Type |
Description |
---|---|---|
doc |
documentReference |
Reference to the document |
Return
Returns the number of rows of the Numerical Results Summary Window of the first graphical view of the document.
Note
In Python, you can also use doc method GetNumResSummaryNRows
:
import nex
doc = nex.GetActiveDocument()
nex.ApplyTemplate(doc, "PerieventHistograms")
numRows = doc.GetNumResSummaryNRows()
Examples
Python
import nex
doc = nex.GetActiveDocument()
nex.ApplyTemplate(doc, "PerieventHistograms")
numRows = nex.GetNumResSummaryNRows(doc)
NexScript
doc = GetActiveDocument()
ApplyTemplate(doc, "PerieventHistograms")
numRows = GetNumResSummaryNRows(doc)