19 lines
240 B
C#
19 lines
240 B
C#
using System;
|
|
|
|
namespace EasyLayout
|
|
{
|
|
[Flags]
|
|
public enum Anchors
|
|
{
|
|
UpperLeft = 0,
|
|
UpperCenter = 1,
|
|
UpperRight = 2,
|
|
MiddleLeft = 3,
|
|
MiddleCenter = 4,
|
|
MiddleRight = 5,
|
|
LowerLeft = 6,
|
|
LowerCenter = 7,
|
|
LowerRight = 8
|
|
}
|
|
}
|