Customize tables properties

Hello,

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
Nasser wrote: 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).

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