Autodesk.Revit.DB.ConnectorType是Revit API中表示连接器类型的类。此类是ConnectorConnectorTypes的成员。
//获取第一个连接器类型
ConnectorType connectorType = ConnectorTypeManager.GetEnumerator().Current;
//获取连接器的类别
string category = connectorType.Category;
//获取连接器的描述
string description = connectorType.Description;
//获取连接器的家族名称
string familyName = connectorType.FamilyName;
//获取连接器支持的宿主元素
FamilySymbolSet hosts = connectorType.Hosts;
//判断两种连接器类型是否相等
bool isEqual = connectorType.IsEqual(connectorType);
//判断两种连接器类型是否等效
bool isEquivalent = connectorType.IsEquivalent(connectorType);
//获取连接器类型的名称
string name = connectorType.Name;
//获取连接器类型的System.Type
System.Type systemType = connectorType.SystemType;
ConnectorTypes
:表示连接器类型的集合。FamilySymbolSet
:表示族类型的集合。