diff options
Diffstat (limited to 'framework/Web/UI/WebControls/TTableRowSection.php')
-rw-r--r-- | framework/Web/UI/WebControls/TTableRowSection.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TTableRowSection.php b/framework/Web/UI/WebControls/TTableRowSection.php new file mode 100644 index 00000000..03b4c242 --- /dev/null +++ b/framework/Web/UI/WebControls/TTableRowSection.php @@ -0,0 +1,32 @@ +<?php +/** + * TTableRow and TTableCellCollection class file + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2014 PradoSoft + * @license http://www.pradosoft.com/license/ + * @package System.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 <qiang.xue@gmail.com> + * @package System.Web.UI.WebControls + * @since 3.0.4 + */ +class TTableRowSection extends TEnumerable +{ + const Header='Header'; + const Body='Body'; + const Footer='Footer'; +}
\ No newline at end of file |