what are the different element types?
My intention to retrieve all pipe systems. So fare my code is as below. Now i don’t know what element type need to apply after Ofclass

what are the different element types?
My intention to retrieve all pipe systems. So fare my code is as below. Now i don’t know what element type need to apply after Ofclass
Hi @shibujoseukken,
You missed ToElements()
import clr
clr.AddReference('RevitServices')
from RevitServices.Persistence import DocumentManager
doc = DocumentManager.Instance.CurrentDBDocument
clr.AddReference('RevitNodes')
import Revit
clr.ImportExtensions(Revit.Elements)
clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import *
from Autodesk.Revit.DB.Plumbing import *
pipeType = FilteredElementCollector(doc).OfClass(PipeType).ToElements()
OUT = pipeType
EDIT : To retrieve the Piping Systems, look at this previous post :