blob: 3fae9048f7491af1b22e75d06d7b7567d4db9957 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* TTextHighlighter class file
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @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;
/**
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @package Prado\Web\UI\WebControls
* @since 3.0
*/
class TTextHighlighterLineNumberStyle extends TEnumerable
{
const Li='Li';
const Table='Table';
}
|