Re: Border on Tables
- To: mathgroup at smc.vnet.net
- Subject: [mg17078] Re: Border on Tables
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sat, 17 Apr 1999 03:34:50 -0400
- Organization: Universitaet Leipzig
- References: <7f1ar9$kdo@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi Jeff,
TableForm[] is from the good old days of Mathematica terminal sessions.
You need a GridBox[] with the options for frames and lines
MakeTable[m_?MatrixQ]:=
DisplayForm[
GridBox[Map[ToBoxes,m,{2}],ColumnLines->True,RowLines->True,
GridFrame->True]]
willdo what you want and a frame and column and row lines
Hope that helps
Jens
"Capt Jeff P. Palumbo, pl, x3-7153" wrote:
>
> Does anyone know how to put borders around all of the output cells from a
> TableForm command?
>
> Thanks in advance,
> Jeff