Hello all,
I am trying to basically use the e.GetParameterValueByName in python as opposed to DesignScript. No matter what I read on the API or in the forums I always get the same errors, so I am obviously misunderstanding a step that would make this work.
den = IN[0] #A list of Family Types plugged in via Dynamo
dln = []
for d in den:
dln.append(d.GetParameters("Parameter Name"))
OUT = dln
However I always get the following error even though I can see in the API that this method exists for elements.
AttributeError: ‘FamilyType’ object has no attribute 'GetParameters
What do I need to do to make this work?