Getting worksets Name

Hi @Daniel_Hurtubise ,
you can get it with this little bit of code:

import clr
clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import*

if isinstance(IN[0],list):
	OUT = [i.Name for i in IN[0]]
else:
	OUT = IN[0].Name
16 Likes