fmt.spad line 1541 [edit on github]
undocumented
epilogue(t)
extracts the epilogue section of the form t
. This is a function f
such that f
(l
) returns a box with label l
.
format(o)
creates a formatted form of the OutputForm
o
.
format(t)
extracts the fmt
section of a 2D-form t
.
format(o, n)
creates a formatted form of the OutputForm
o
with step number n
.
new()
create a new, empty object with defaultPrologue(""
) and defaultEpilogue(""
). Use setPrologue!, setFormat! and setEpilogue! to set the various components of this object.
operatorHandlers()
returns an internal data structure that is used for the selection of respective handlers.
prologue(t)
extracts the prologue section of the form t
.
Set the prologue and epilogue that is used by default. Between the elements of the list the stepnumber will be inserted. The old values are returned.
setEpilogue!(t, epi)
sets the epilogue section of the form t
to epi and returns the previous epilogue.
setFormat!(t, box)
sets the fmt
section of a form t
and returns the previous box.
setPrologue!(t, pro)
sets the prologue section of the form t
to pro and returns the previous prologue.