包 | system.web |
---|---|
继承 | class COutputEvent » CEvent » CComponent |
源自 | 1.0 |
版本 | $Id: COutputEvent.php 2799 2011-01-01 19:31:13Z qiang.xue $ |
源码 |
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
handled | boolean | 是否处理事件。默认为false。 当这个值设置为true,其它未处理的事件处理程序。 | CEvent |
output | string | 要处理的输出。处理后的输出应存回这个属性。 | COutputEvent |
params | mixed | 附加的事件参数. | CEvent |
sender | object | 事件的发起者 | CEvent |
公共方法
属性详细
output
属性
public string $output;
要处理的输出。处理后的输出应存回这个属性。
方法详细
__construct()
方法
public void __construct(mixed $sender, string $output)
| ||
$sender | mixed | 事件的发送者 |
$output | string | 要处理的输出 |
public function __construct($sender,$output)
{
parent::__construct($sender);
$this->output=$output;
}
构造方法。