* @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; /** * TTableRowSection class. * TTableRowSection defines the enumerable type for the possible table sections * that a {@link TTableRow} can be within. * * The following enumerable values are defined: * - Header: in table header * - Body: in table body * - Footer: in table footer * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class TTableRowSection extends \Prado\TEnumerable { const Header='Header'; const Body='Body'; const Footer='Footer'; }