GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Term::VT102::Boundless(3) User Contributed Perl Documentation Term::VT102::Boundless(3)

Term::VT102::Boundless - A Term::VT102 that grows automatically to accomodate whatever you print to it.

        use Term::VT102::Boundless;

        my $t = Term::VT102::Boundless->new(
                # you can optionally specify minimal dimensions
                cols => 80,
                rows => 24,
        );

        $t->process($_) for @text;

        warn "screen dimensions are " . $t->cols . "x" . $t->rows;

This is a subclass of Term::VT102 that will grow the virtual screen to accomodate arbitrary width and height of text.

The behavior is more similar to the buffer of a scrolling terminal emulator than to a real terminal, making it useful for output displays in scrolling media.

new
Overrides "new" in Term::VT102, providing default "cols" and "rows" values of 1 (instead of 80 and 24).

Term::VT102, HTML::FromANSI, Term::ANSIColor

Yuval Kogman <nothingmuch@woobling.org>

        Copyright (c) 2007 Yuval Kogman. All rights reserved
        This program is free software; you can redistribute it and/or modify it
        under the terms of the MIT license or the same terms as Perl itself.
2018-10-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.