blob: 42be16bbe7a928dbfb9d1d0fa1ec6d19ac7eb344 (
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
|
<?php
/**
* TControl, TControlCollection, TEventParameter and INamingContainer 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
*/
/**
* ISurroundable interface
*
* Identifies controls that may create an additional surrounding tag. The id of the
* tag can be obtained with {@link getSurroundingTagID}.
*
* @package System.Web.UI
* @since 3.1.2
*/
interface ISurroundable
{
/**
* @return string the id of the embedding tag of the control or the control's clientID if not surrounded
*/
public function getSurroundingTagID();
}
|