Hi all, a quick question on the use of Transactions. If processing a list of element changes - do we need a transaction per element or a single TX for the list of items?
pyXam
February 2, 2024, 2:38am
2
This Thread may be of value to you with regard to processing a list of element changes.
Hi All,
I am just wondering if there is a Transaction limit when it comes to the number of Revit elements that can be created via the API when Dynamo is being used as the communicator.
I am using Dynamo Python to create,
collect = Autodesk.Revit.Creation.FamilyInstanceCreationData
and use it with the,
items = doc.Create.NewFamilyInstances2(collect)
with the purpose of placing approximately 10,000 Revit families (the family size is 1mb)
Code below:
## Import Reference Examples
import clr…
1 Like