24 lines
485 B
C#
24 lines
485 B
C#
#if RPH
|
|
namespace LemonUI
|
|
{
|
|
/// <summary>
|
|
/// The alignment of the element to draw.
|
|
/// </summary>
|
|
public enum Alignment
|
|
{
|
|
/// <summary>
|
|
/// Aligns the element to the Center.
|
|
/// </summary>
|
|
Center = 0,
|
|
/// <summary>
|
|
/// Aligns the element to the Left.
|
|
/// </summary>
|
|
Left = 1,
|
|
/// <summary>
|
|
/// Aligns the element to the RIght.
|
|
/// </summary>
|
|
Right = 2,
|
|
}
|
|
}
|
|
#endif
|