Hi all,
I’m trying to access the Built In ‘Function’ parameter for a set of Curtain Wall families using Python.
I’m feeding a list of curtain walls into the below script and am iterating over the list to try retrieve the Built In parameter. However, my output is returning as null. Any idea where I am going wrong here?
I’m using the boilerplate setup code from the dynamo python primer which is quite long, so I’ve omitted it for legibility.
Thanks for your help
element = UnwrapElement(IN[0])
cwfunction =
for i in element:
cwfunction.append(i.get_Parameter(BuiltInParameter.FUNCTION_PARAM))OUT = cwfunction