import clr
#import Revit API
clr.AddReference('RevitAPI')
import Autodesk
from Autodesk.Revit.DB import *
gN = []
gT = []
prop_infos = clr.GetClrType(GroupTypeId).GetProperties()
for p in prop_infos:
gN.append(p.Name)
gT.append(p)
# Assign your output to the OUT variable.
OUT = gN, gT
import clr
import sys
#import Revit API
clr.AddReference('RevitAPI')
import Autodesk
from Autodesk.Revit.DB import *
prop_infos = clr.GetClrType(GroupTypeId).GetProperties()
dict_forgeGroupTypeId = {p.Name : p.GetGetMethod().Invoke(None, None) for p in prop_infos}
OUT = dict_forgeGroupTypeId
import sys
import clr
clr.AddReference('ProtoGeometry')
from Autodesk.DesignScript.Geometry import *
forgeTypeIds = IN[0]
output = []
for id in forgeTypeIds:
output.append(id.TypeId)
OUT = output
@c.poupin i notice that the values of project parameters created by the dynamo graph don’t show up in element tags.
However, that issue doesn’t exist if i create the project parameters manually.
Do you know something, that can prevent this issue?