15 lines
460 B
C#
15 lines
460 B
C#
namespace Doozy.Runtime.UIDesigner
|
|
{
|
|
/// <summary> Describes the possible align modes </summary>
|
|
public enum AlignMode
|
|
{
|
|
/// <summary> Aligns the item on the inside of the target </summary>
|
|
Inside = 0,
|
|
|
|
/// <summary> Aligns the item's center on the edge of the target </summary>
|
|
Center = 1,
|
|
|
|
/// <summary> Aligns the item on the outside of the target </summary>
|
|
Outside = 2
|
|
}
|
|
} |