ITransactions ExecuteInvisibleTransaction Method TIBCO Spotfire 6.0 API Reference
Starts an invisible transaction on the document model by executing executor.

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

void ExecuteInvisibleTransaction(
	Executor executor
)
Remarks

This method starts an invisible transaction on the document model by executing executor. If there is already an ongoing transaction then the transaction is included in the current transaction.

All modifications of the document that are performed as a result of the operations performed by executor will be recorded in the transaction so that the transaction can be unexecuted if the user requests an undo.

The transaction is invisible in the sense that the user will not see the transaction as an entry on the undo stack. If the user makes an undo then the transaction will be silently unexecuted together with the enclosing visible transaction.

See Also