DocumentNodeOnReconfigured Method TIBCO Spotfire 7.6 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: 25.11.10401.3615 (25.11.10401.3615)
Syntax

C#
protected virtual void OnReconfigured()
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 OnConfigured) be recorded on the undo stack. The node has an owner and can lookup ancestors and services.

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

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

Version Information

Supported in: 7.6, 7.5, 7.0, 6.5, 6.0, 5.5, 5.0
See Also

Reference