DocumentNodeOnReconfigure Method

Spotfire 14.3 API Reference
Allows a node to reconfigure itself to a new part of the surrounding document.

Namespace:  Spotfire.Dxp.Framework.DocumentModel
Assembly:  Spotfire.Dxp.Framework (in Spotfire.Dxp.Framework.dll) Version: 65.0.19510.3242 (65.0.19510.3242)
Syntax

C#
protected virtual void OnReconfigure()
Remarks

This method is called when this node is attached (added to) to the document when it has been moved. This method is not called at undo or redo.

The purpose of the method is to allow a node to reconfigure itself depending on the surrounding document. The node may modify its undoable state. These modifications will (in constrast to OnConfigure) be recorded on the undo stack. The node has an owner and can lookup ancestors and services.

This method is called pre-order in a depth-first traversal of the sub tree that is being re-attached. The owner of the node has been reconfigured when this method is called but the children of the node has not been reconfigured yet.

Make sure to call base.OnReconfigure() at the start of the overriding method.

Version Information

Supported in: 14.3, 14.2, 14.1, 14.0, 12.5, 12.4, 12.3, 12.2, 12.1, 12.0, 11.8
See Also

Reference