using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FWindSoft.Revit.Mep
{
///
/// 随时扩展一些连接中,可能需要的配置信息
///
public class JoinContext
{
///
/// 创建连接时,是否检查待连接Connector的链接状态
///
public bool IsCheckConnected { get; set; } = true;
///
/// 接线盒摆放形式
///
public JunctionBoxPlaceType JunctionBoxPlace { get; set; } = JunctionBoxPlaceType.TurnHorizontally;
}
public enum JunctionBoxPlaceType
{
///
/// 不调整
///
NoAdjustment = 0,
///
/// 调整成横向
///
TurnHorizontally = 1,
///
/// 调整层纵向
///
TurnVertical = 2,
}
}