= Description = 
 * 하이퍼링크 를 제공합니다. 
 * focus() 이벤트로 실제 url 로 연결 시켜 줘야합니다. 

= Sample =

{{{#!vim php 
<?php

/**
 * winbinder editbox example 
 *
 * written by easylogic
 *
 */

$window = new WBAppWindow(array(
	'title' => 'EditBox Test',
	'width' => 300,
	'height' => 400,
	'layout' => new WBGridLayout(2, 9)
));


// 기본 editbox 
$window->add(array('wbtype' => 'Label', 'caption' => 'default'));
$window->add(array('wbtype' => 'HyperLink', 'text' => 'Hello World!!'));

$window->add(array('wbtype' => 'Label', 'caption' => 'right'));
$window->add(array('wbtype' => 'HyperLink', 'text' => 'Hello World!!', 'align' => 'right'));

$window->add(array('wbtype' => 'Label', 'caption' => 'center'));
$window->add(array('wbtype' => 'HyperLink', 'text' => 'Hello World!!', 'align' => 'center'));

$window->add(array('wbtype' => 'Label', 'caption' => 'disabled'));
$window->add(array('wbtype' => 'HyperLink', 'text' => "Hello World!!", 'disabled' => true));

$window->add(array('wbtype' => 'Label', 'caption' => 'color'));
$window->add(array('wbtype' => 'HyperLink', 'text' => "Hello World!!", 'url' => 'http://www.naver.com/', 'color' => YELLOW));

$window->add(array('wbtype' => 'Label', 'caption' => 'link'));
$window->add(array('wbtype' => 'HyperLink', 'text' => "http://www.easylogic.co.kr", 'url' => 'http://www.easylogic.co.kr/'));


$window->setVisible(true);

WBApplication::start();


?>
}}}
