* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package Prado\Web\UI\WebControls */ namespace Prado\Web\UI\WebControls; /** * TTextAlign class. * TTextAlign defines the enumerable type for the possible text alignments * * The following enumerable values are defined: * - Left: left aligned * - Right: right aligned * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class TTextAlign extends TEnumerable { const Left='Left'; const Right='Right'; }