BoxTreeRep:
TYPE ~
RECORD [
boundbox: ImagerFont.Extents, -- size of bounding box( what type should this be)
subBoxes: TYPE ~ LIST OF BOXTREE, -- list of boxes bound by this box
parentBox: TYPE ~ BOXTREE, -- parent bounding box
style: TYPE ~ STYLE, --printing size and style of font, ie italics 10point
expression: TYPE ~ EXPR -- pointer to expression bound by this box
];
;