14 lines
217 B
C#
14 lines
217 B
C#
namespace RobotNet.MapShares.Enums;
|
|
|
|
public enum AlignState
|
|
{
|
|
HorizontalLeft,
|
|
HorizontalRight,
|
|
VerticalTop,
|
|
VerticalBottom,
|
|
HorizontalCenter,
|
|
VerticalCenter,
|
|
SplitNode,
|
|
MergeNode,
|
|
}
|