namespace LemonUI.Menus
{
///
/// The style of the Grid Panel.
///
public enum GridStyle
{
///
/// The full grid with X and Y values.
///
Full = 0,
///
/// A single row on the center with the X value only.
///
Row = 1,
///
/// A single column on the center with the Y value only.
///
Column = 2,
}
}