downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

newt_entry_get_value> <newt_draw_form
[edit] Last updated: Fri, 17 May 2013

view this page in

newt_draw_root_text

(PECL newt >= 0.1)

newt_draw_root_textDisplays the string text at the position indicated

Descrierea

void newt_draw_root_text ( int $left , int $top , string $text )

Displays the string text at the position indicated.

Parametri

left

Column number

Notă:

If left is negative, the position is measured from the opposite side of the screen.

top

Line number

Notă:

If top is negative, the position is measured from the opposite side of the screen.

text

Text to display.

Valorile întoarse

Nu este întoarsă nici o valoare.

Exemple

Example #1 A newt_draw_root_text() example

This code demonstrates drawing of titles in the both corners of the screen.

<?php
 newt_init
();
 
newt_cls();

 
newt_draw_root_text (20"Some root text");
 
newt_refresh();
 
sleep(1);

 
newt_draw_root_text (-300"Root text in the other corner");
 
newt_refresh();
 
sleep(1);

 
newt_finished();
?>

Vedeți de asemenea



add a note add a note User Contributed Notes newt_draw_root_text - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites