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