newt_button

(PECL newt >= 0.1)

newt_buttonCreate a new button

Opis

newt_button ( int $left , int $top , string $text ) : resource

Creates a new button.

Parametry

left

X-coordinate of the button.

top

Y-coordinate of the button.

text

The text which should be displayed in the button.

Zwracane wartości

Returns a resource link to the created button component, or FALSE on error.

Przykłady

Przykład #1 A newt_button() example

<?php

$form 
newt_form();

$ok_button newt_button(512"Run Tool");
    
newt_form_add_component($form$ok_button);

?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top