namespace Doozy.Runtime.UIDesigner
{
/// Describes the possible align modes
public enum AlignMode
{
/// Aligns the item on the inside of the target
Inside = 0,
/// Aligns the item's center on the edge of the target
Center = 1,
/// Aligns the item on the outside of the target
Outside = 2
}
}