Workspace Transaction Property

See Also

This property is the RepositoryTransaction object for the open Repository instance. This is a read-only property.

Syntax

Set variable = object.Transaction

The Transaction property syntax has the following parts.

Part Description
variable A variable declared as an Object. Receives the RepositoryTransaction object for this Repository instance.
object The object that represents the workspace through which this program is interacting with the Repository.

Remarks

You can gain access to the RepositoryTransaction object by using the syntax shown above. Then you can access the properties and methods of the RepositoryTransaction object by using the variable.method and variable.property syntax. You can also access the properties and methods of the RepositoryTransaction object directly, using syntax like:

Call object.Transaction.method

-or-

variable = object.Transaction.property

See the RepositoryTransaction object for details on the methods and properties that it provides.