Hello,
I would like to get a list of Parameters(not the values) from a specifiek family when working in the family editor. I think i am coming close but when i run , i only get one value and not a list. I am not sure what i am doing wrong.
You are overwriting paramName with each parameter. Define paramName a list before your “for” statement
paramName = [] for param in FamilyMan.Parameters: paramName.append(param.Definition.Name) OUT = paramName
This is it! Great thanks alot!