RecalculateAnalysisInWindow

Forces recalculation of analysis in the specified graphic window.

Syntax

RecalculateAnalysisInWindow(doc, graphWindowNumber)

Parameters

Parameter

Type

Description

doc

documentReference

Reference to the document

graphWindowNumber

number

Index of the Graph window

Return

None.

Examples

Python

import nex
doc = nex.GetActiveDocument()
nex.RecalculateAnalysisInWindow(doc, 1)

NexScript

doc = GetActiveDocument()
RecalculateAnalysisInWindow(doc, 1)