You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
351 B
18 lines
351 B
namespace AuroraDesk.Core.Entities;
|
|
|
|
/// <summary>
|
|
/// 附件圆定位模式(控制在节点边框内侧或外侧渲染)
|
|
/// </summary>
|
|
public enum ConnectorPlacementMode
|
|
{
|
|
/// <summary>
|
|
/// 在节点边框内侧对齐
|
|
/// </summary>
|
|
Inside,
|
|
|
|
/// <summary>
|
|
/// 在节点边框外侧对齐
|
|
/// </summary>
|
|
Outside
|
|
}
|
|
|
|
|