php man page for newt_draw_root_text

Query: newt_draw_root_text

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

NEWT_DRAW_ROOT_TEXT(3)							 1						    NEWT_DRAW_ROOT_TEXT(3)

newt_draw_root_text - Displays the string text at the position indicated

SYNOPSIS
void newt_draw_root_text (int $left, int $top, string $text)
DESCRIPTION
Displays the string text at the position indicated.
PARAMETERS
o $left - Column number Note If left is negative, the position is measured from the opposite side of the screen. o $top - Line number Note If top is negative, the position is measured from the opposite side of the screen. o $text - Text to display.
RETURN VALUES
No value is returned.
EXAMPLES
Example #1 A newt_draw_root_text(3) 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(); ?>
SEE ALSO
newt_push_help_line(3), newt_pop_help_line(3). PHP Documentation Group NEWT_DRAW_ROOT_TEXT(3)
Related Man Pages
xmtextfieldpostoxy(3) - centos
xmtextpostoxy(3x) - osf1
xmtextsethighlight(3x) - osf1
newt_draw_root_text(3) - php
ps_set_text_pos(3) - php
Similar Topics in the Unix Linux Community
How to print at a specific position of the display
Shell scripting adding text to top of file
Display most top 10 occurring words along with number of ocurences of word inthe text
Another question???
Merge 2 text files to one text file side by side