//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the text alignment within a control.
///
public enum TextAlign {
///
/// The text is aligned to the left within the enclosing control.
///
Left = 1,
///
/// The text is aligned to the right within the
/// enclosing control.
///
Right = 2,
}
}