downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<newt_draw_formnewt_entry_get_value>
Last updated: Thu, 26 Jun 2008

newt_draw_root_text

(PECL newt:0.1-1.1)

newt_draw_root_text — Displays the string text at the position indicated

Description

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

Displays the string text at the position indicated.

Parameters

left

Column number

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

top

Line number

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

text

Text to display.

Return Values

No value is returned.

Examples

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 (2, 0, "Some root text");
 
newt_refresh();
 
sleep(1);

 
newt_draw_root_text (-30, 0, "Root text in the other corner");
 
newt_refresh();
 
sleep(1);

 
newt_finished();
?>



add a noteadd a note User Contributed Notes
Displays the string text at the position indicated
There are no user contributed notes for this page.




<newt_draw_formnewt_entry_get_value>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs