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
Graph::Easy::Group::Cell(3) User Contributed Perl Documentation Graph::Easy::Group::Cell(3)

Graph::Easy::Group::Cell - A cell in a group

        use Graph::Easy;

        my $ssl = Graph::Easy::Edge->new( );

        $ssl->set_attributes(
                label => 'encrypted connection',
                style => '-->',
                color => 'red',
        );

        $graph = Graph::Easy->new();

        $graph->add_edge('source', 'destination', $ssl);

        print $graph->as_ascii();

A "Graph::Easy::Group::Cell" represents a cell of a group.

Group cells can have a background and, if they are on the outside, a border.

There should be no need to use this package directly.

        $last_error = $group->error();

        $group->error($error);                  # set new messages
        $group->error('');                      # clear error

Returns the last error message, or '' for no error.

        my $ascii = $cell->as_ascii();

Returns the cell as a little ascii representation.

        my $html = $cell->as_html($tag,$id);

Returns the cell as HTML code.

        my $label = $cell->label();

Returns the name (also known as 'label') of the cell.

        my $class = $cell->class();

Returns the classname(s) of this cell, like:

        group_cities gr gb

for a cell with a bottom (gb) and right (gr) border in the class "cities".

None.

Graph::Easy.

Copyright (C) 2004 - 2007 by Tels <http://bloodgate.com>.

See the LICENSE file for more details.

2016-06-06 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.