summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/THorizontalAlign.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/WebControls/THorizontalAlign.php')
-rw-r--r--framework/Web/UI/WebControls/THorizontalAlign.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/THorizontalAlign.php b/framework/Web/UI/WebControls/THorizontalAlign.php
new file mode 100644
index 00000000..56bb9b17
--- /dev/null
+++ b/framework/Web/UI/WebControls/THorizontalAlign.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * TStyle class file.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005-2014 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @package System.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 <qiang.xue@gmail.com>
+ * @package System.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';
+} \ No newline at end of file