next | previous | forward | backward | up | top | index | toc | home

netTable(List) -- a table of boxes

Synopsis

Description

i1 : f = {{"hi there","foo"},{-3, 2^40}}

o1 = {{hi there, foo}, {-3, 1099511627776}}

o1 : List
i2 : netTable f

o2 = hi therefoo          
     -3      1099511627776
i3 : netTable(f,Boxes=>true)

     +--------+-------------+
o3 = |hi there|foo          |
     +--------+-------------+
     |-3      |1099511627776|
     +--------+-------------+
i4 : netTable(f,Boxes=>true,HorizontalSpace=>1,VerticalSpace=>1)

     +----------+---------------+
     |          |               |
o4 = | hi there | foo           |
     |          |               |
     +----------+---------------+
     |          |               |
     | -3       | 1099511627776 |
     |          |               |
     +----------+---------------+
i5 : netTable(f,Boxes=>true,Alignment=>Center)

     +--------+-------------+
o5 = |hi there|     foo     |
     +--------+-------------+
     |   -3   |1099511627776|
     +--------+-------------+
i6 : netTable(f,Boxes=>true,BaseRow=>1)

     +--------+-------------+
     |hi there|foo          |
     +--------+-------------+
o6 = |-3      |1099511627776|
     +--------+-------------+