Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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!
Solved! Go to Solution.