//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
using System.ComponentModel;
///
///
/// Specifies the horizonal alignment.
///
///
[ TypeConverterAttribute(typeof(HorizontalAlignConverter)) ]
public enum HorizontalAlign {
///
///
/// Specifies that horizonal alignment is not set.
///
///
NotSet = 0,
///
///
/// Specifies that horizonal alignment is left justified.
///
///
Left = 1,
///
///
/// Specifies that horizonal alignment is centered.
///
///
Center = 2,
///
///
/// Specifies that horizonal alignment is right justified.
///
///
Right = 3,
///
///
/// Specifies that horizonal alignment is justified.
///
///
Justify = 4
}
}