Files
Shrlalgo.RvKits/ShrlAlgoToolkit.RevitAddins/RvCommon/AlignType.cs

32 lines
685 B
C#
Raw Normal View History

2024-09-22 11:05:41 +08:00
using System.ComponentModel;
2025-04-24 20:56:44 +08:00
namespace ShrlAlgoToolkit.RevitAddins.RvCommon;
2024-09-22 11:05:41 +08:00
public enum AlignType
{
[Description("左对齐")]
Left,
[Description("右对齐")]
Right,
[Description("上对齐")]
Up,
[Description("下对齐")]
Down,
/// <summary>
/// Y轴中心对齐水平位置居中
/// </summary>
[Description("水平居中")]
HorizontallyCenter,
/// <summary>
/// X轴中心对齐垂直居中对齐
/// </summary>
[Description("垂直居中")]
VerticallyCenter,
[Description("底对齐")]
Bottom,
[Description("中对齐")]
Middle,
[Description("顶对齐")]
Top,
}