the Domain in Autodesk.Revit.DB DomainCableTrayConduit

the Domain in Autodesk.Revit.DB DomainCableTrayConduit

1368026189
Enthusiast Enthusiast
532 次查看
2 条回复
1 条消息(共 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 个赞
已接受的解答 (1)
533 次查看
2 条回复
回复 (2)
2 条消息(共 3 条)

matthew_taylor
Advisor
Advisor
已接受的解答

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?
3 条消息(共 3 条)

1368026189
Enthusiast
Enthusiast
Thanks a lot Matt!
0 个赞