Repository 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 open Repository instance 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 via variable.method and variable.property syntax. You can also access the properties and methods of the RepositoryTransaction object directly, using syntax like the following.

Call object.Transaction.method

-or-

variable = object.Transaction.property

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