blob: 03b4c242b414336c496a1aeb661d3ceb1faa06f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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';
}
|