Files
aistudio-wpf-diagram/Util.DiagramDesigner/Enums/HorizontalVerticalAlignment.cs
2021-07-23 09:42:22 +08:00

23 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Util.DiagramDesigner
{
public enum HorizontalVerticalAlignment
{
TopAlignLeft,
TopAlignCenter,
TopAlignRight,
TopAlignJustify,
CenterAlignLeft,
CenterAlignCenter,
CenterAlignRight,
CenterAlignJustify,
BottomAlignLeft,
BottomAlignCenter,
BottomAlignRight,
BottomAlignJustify,
}
}