Hello Dynos,
I do some Progress in Coding, actually it is funny. I just want to get Parameters from a wall (f.e. BuildInParameters, Walltype,…)
def Element(x):
a = UnwrapElement(x)
return a
OUT = Element(IN[0]).GetType().ToString()
I try also use dir() Can i use dir()
to find which Actions and Queries i can do? like:
Element = UnwrapElement(IN[0])
OUT = dir(Element.GetParameters.GetType().ToString.Targets.Contains)
What is dir() doing can i navigate with outdoting to my f.e. “WallType” or is it just listing Actions and queries? How i get finaly the information?
Have i to snoop out Revit.Elements
f.e.?
I just what to get a deeper understanding
OUT = dir(Revit.Elements.Category.ByName.ToString)
I got no erros, but i am not shure if i navigate well. Does anybody have some examples?
KR
Andreas