Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16124 программиста и 1779 роботов. Сейчас ищут 1247 программистов ...
newt_button - Create a new button
Вернуться к: Newt Функции
newt_button
(PECL newt >= 0.1)
newt_button — Create a new button
Описание
resource newt_button
( int
$left
, int $top
, string $text
)Creates a new button.
Список параметров
-
left
-
X-coordinate of the button.
-
top
-
Y-coordinate of the button.
-
text
-
The text which should be displayed in the button.
Возвращаемые значения
Returns a resource link to the created button component, or FALSE
on
error.
Примеры
Пример #1 A newt_button() example
<?php
$form = newt_form();
$ok_button = newt_button(5, 12, "Run Tool");
newt_form_add_component($form, $ok_button);
?>
Вернуться к: Newt Функции