Customize tables properties
Nasser
Is it possible to customize the look of a table (e.g. remove the column where are written the rows numbers) ?
Moreover, I'd like to write-protect the table (i.e. display a read-only table).
Thanks in advance
Regards
You are looking for the modifyTable command together with the showParts keyword.
To hide the point column use
modifytable showparts=255 & ~(2^3)
.To hide also the entry field (this makes the table read-only) and make the selection highlighting invisible use
modifytable showparts=255 & ~(2^0+2^3+2^6)
.To find out more read the section about the ModifyTable command in the documentation.
A
January 11, 2011 at 05:34 am - Permalink
Best Regards
January 11, 2011 at 06:02 am - Permalink