summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TOrientation.php
blob: ffe7aec7fe4d7683649e534c4b247465c95886d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * TOrientation class.
 * Enum for Horizontal or Vertical orientation
 *
 * Horizontal				
 * Vertical	
 * 
 * @author Jason Ragsdale <jrags@jasrags.net>
 * @version $Id: TLogoutAction.php 1398 2006-09-08 19:31:03Z xue $
 * @package System.Web.UI.WebControls
 * @since 3.1
 */
class TOrientation extends TEnumerable
{
	const Horizontal='Horizontal';
	const Vertical='Vertical';
}
?>