17 lines
237 B
C#
17 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MBS.Framework.UserInterface
|
|
{
|
|
public enum HorizontalAlignment
|
|
{
|
|
Default = -1,
|
|
Left = 0,
|
|
Center = 1,
|
|
Right = 2,
|
|
Justify = 3
|
|
}
|
|
}
|