Revit 2025.3 API
TransactionHas |
Determines whether the transaction has ended already.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public bool HasEnded()
Public Function HasEnded As Boolean
public: bool HasEnded()
member HasEnded : unit -> bool
Return Value
BooleanTrue if the transaction has already been committed or rolled back, False otherwise.

A transaction is ended by completing either the 'Commit' or 'RollBack' method.
Another way of testing whether a transaction has ended is by testing
the current status (see GetStatus). It must be either
'TransactionStatus.Committed' or 'TransactionStatus.RolledBack'
See Also