Files
ShrlAlgoToolkit/ShrlAlgoToolkit.RevitAddins/General/AlignType.cs
2026-02-22 20:03:42 +08:00

36 lines
787 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.ComponentModel;
using ShrlAlgoToolkit.RevitAddins.RvCommon;
using ShrlAlgoToolkit;
using ShrlAlgoToolkit.RevitAddins;
namespace ShrlAlgoToolkit.RevitAddins.General;
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,
}