Fabrication Built in Parameter is Read Only

I am starting the process of teaching myself Python, the resources are great. I do not know all the limitations yet. I just don’t want to try to do something if it is impossible, I will attempt another code if it isn’t possible.

Is it possible to change a read-only built in parameter like FABRICATION_PRODUCT_CODE utilizing Python. As you see it isn’t possible with the Dynamo Nodes.

It is not. Dynamo uses the Revit API so there’s functionally no difference. Read-only parameters are just that, read-only.

You would have to determine what is driving the read-only value and look into modifying that instead.

1 Like

Thank you very much.