the Domain in Autodesk.Revit.DB DomainCableTrayConduit

the Domain in Autodesk.Revit.DB DomainCableTrayConduit

1368026189
Enthusiast Enthusiast
527 Views
2 Replies
Message 1 of 3

the Domain in Autodesk.Revit.DB DomainCableTrayConduit

1368026189
Enthusiast
Enthusiast

Snippet

namespace Autodesk.Revit.DB
{
  //
  // 摘要:
  //     Type of connector domain.
  public enum Domain
  {
    //
    // 摘要:
    //     Domain is undefined
    DomainUndefined = 0,
    //
    // 摘要:
    //     HVAC (duct) connector
    DomainHvac = 1,
    //
    // 摘要:
    //     Electrical connector
    DomainElectrical = 2,
    //
    // 摘要:
    //     Connector of cable trays or conduits
    DomainPiping = 3,
    //
    // 摘要:
    //     Connector of Structural Analytical Model
    DomainCableTrayConduit = 4
  }
}


It is much confused that
 //
    // 摘要:
    //     Connector of Structural Analytical Model
    DomainCableTrayConduit = 4

 

what  does DomainCableTrayConduit really mean? thanks!

 

0 Likes
Accepted solutions (1)
528 Views
2 Replies
Replies (2)
Message 2 of 3

matthew_taylor
Advisor
Advisor
Accepted solution

It's likely that this is an error in the documentation.

 

See this similar ENUM:

http://www.revitapidocs.com/2018/4f9ca54b-91bc-51c2-8ad1-3b0808631c83.htm


Cheers,

-Matt
_______________________________________________________________________________
Marking a post as a 'solution' helps the community. Giving a post 'Kudos' is as good as saying thanks. Why not do both?
Message 3 of 3

1368026189
Enthusiast
Enthusiast
Thanks a lot Matt!
0 Likes