/*------------------------------------------------------------------------- * 功能描述:ElementRelationShip * 作者:xulisong * 创建时间: 2019/6/18 14:57:08 * 版本号:v1.0 * -------------------------------------------------------------------------*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JBIM; namespace RevitToJBim { public class ElementRelationShip { public ElementRelationShip() { IsProperty = true; RelatingObjectIsBimId = false; } public bool RelatingObjectIsBimId { get; set; } /// /// 主体对象 /// public string RelatingObject { get; set; } /// /// 标志关系是否由属性定义 /// public bool IsProperty { get; set; } public void SetPropertyName(string propertyName) { PropertyName = propertyName; } public void SetElementType(TypeDefinition type) { PropertyName = type.GetDescription(); } public string PropertyName { get; private set; } } }