User Guide

Printing Options
The Table Properties dialog contains options to control the placement of
page breaks when printing. You can fit a table on a single page, allow page
breaks between rows, or allow page breaks within a row.
Execution Order Dependency
The order in which cells are executed is set in the Table Properties dialog.
The following tables illustrate the effect of execution order.
Row-wise execution order
> x:=x+1;
>
> x:=1;
>
> x:=x+1;
>
> x:=x+1;
>
Column-wise execution order
> x:=x+1;
>
> x:=1;
>
> x:=x+1;
>
> x:=x+1;
>
6.2 Document Formatting 257