MEP System Inspector's numbers

MEP System Inspector's numbers

Anonymous
Not applicable
777 Views
4 Replies
Message 1 of 5

MEP System Inspector's numbers

Anonymous
Not applicable

Hello!

 

System Inspector works great on air supply systems. I would like to have the data that the system inspector shows. How can I access them from the API?

 

Thanks in advance!

0 Likes
778 Views
4 Replies
Replies (4)
Message 2 of 5

jeremytammik
Autodesk
Autodesk

Dear RevitDevR,

 

Use RevitLookup to explore it interactively through a series of dialogue boxes.

 

Everything that can be accessed and read through RevitLookup is also acceible through the API.

 

You can debug through RevitLookup to see how the access is implemented in detail.

 

Cheers,

 

Jeremy



Jeremy Tammik
Developer Technical Services
Autodesk Developer Network, ADN Open
The Building Coder

0 Likes
Message 3 of 5

Anonymous
Not applicable

Hello, I know that it is an old post, but, is there any resolution? I have been looking for a way to get the system inspector via API and unfortunately it seems not possible....

 

Regards

0 Likes
Message 4 of 5

jeremy_tammik
Alumni
Alumni

Afaik, all the relevant MEP data is provided in the element and system parameter values.

  

Please explore those using RevitLookup, as already suggested above.

  

Jeremy Tammik Developer Advocacy and Support + The Building Coder + Autodesk Developer Network + ADN Open
0 Likes
Message 5 of 5

Anonymous
Not applicable

Hello,

Finally I found a way yo get the system sections:

for (int i = 0; i < mechanicalSystem.SectionsCount; i++)
{
    MEPSection seccion = mechanicalSystem.GetSectionByIndex(i);
}

 MepSection class gives access to that.

0 Likes