blob: cd4880d28ae41aae032aabd684b25c94dd223fde (
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
|
<?php
class ActiveHyperLinkTest extends TPage
{
function change_text()
{
$this->link1->Text = "Pradosoft.com";
}
function change_image()
{
$this->link1->ImageUrl = "...";
}
function change_target()
{
$this->link1->Target = "_top";
}
function change_url()
{
$this->link1->NavigateUrl = "http://www.xlab6.com";
}
}
?>
|