* @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; /** * THorizontalAlign class. * THorizontalAlign defines the enumerable type for the possible horizontal alignments in a CSS style. * * The following enumerable values are defined: * - NotSet: the alignment is not specified. * - Left: left aligned * - Right: right aligned * - Center: center aligned * - Justify: the begin and end are justified * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class THorizontalAlign extends TEnumerable { const NotSet='NotSet'; const Left='Left'; const Right='Right'; const Center='Center'; const Justify='Justify'; }