using System;
#if AdvTree
namespace DevComponents.Tree.TextMarkup
#elif DOTNETBAR
namespace DevComponents.UI.ContentManager
#elif SUPERGRID
namespace DevComponents.SuperGrid.TextMarkup
#elif LAYOUT
namespace DevComponents.DotNetBar.Layout.TextMarkup
#endif
{
///
/// Specifies orientation of content.
///
public enum eContentOrientation
{
///
/// Indicates Horizontal orientation of the content.
///
Horizontal,
///
/// Indicates Vertical orientation of the content.
///
Vertical
}
///
/// Specifies content horizontal alignment.
///
public enum eContentAlignment
{
///
/// Content is left aligned.UI
///
Left,
///
/// Content is right aligned.
///
Right,
///
/// Content is centered.
///
Center
}
///
/// Specifies content vertical alignment.
///
public enum eContentVerticalAlignment
{
///
/// Content is top aligned.
///
Top,
///
/// Content is bottom aligned.
///
Bottom,
///
/// Content is in the middle.
///
Middle
}
}