Go to the first, previous, next, last section, table of contents.


table_widget3 (library)

Author(s): Isabel Martín García.

Version: 1.11#222 (2004/5/24, 13:8:7 CEST)

Version of last change: 1.9#168 (2003/12/4, 17:39:51 CET)

The predicates exported by this module display data in a regular table, as we brought up in the introduction. Both predicates have in common that the font weight for the elements placed in the first column is bold and the remaining elements are in medium font weight.

If the arguments are not in a correct format the exception error8 will be thrown.

Usage and interface (table_widget3)

Documentation on exports (table_widget3)

PREDICATE: tablewidget3/4:

tablewidget3(Title, Header, ElementTable, Footer)

Shows a regular table in a window. The user does not choose a background image.

Example:

tablewidget3('This is the title',
	     'Header text',
	     [['Number of processors','8'],['Average processors','95'],
	       ['Tasks per fork','7.5']],
	     'Footer text').

Usage:

PREDICATE: tablewidget3/5:

tablewidget3(Title, Header, ElementTable, Footer, BackgroundImage)

Shows a regular table in a window. The user must set a background image.

Example:

tablewidget3('This is the title',
	     'Header text',
	     [['Number of processors','8'],['Average processors','95'],
	         ['Average Tasks per fork','7.5']],
	     'Footer text',
	     './images/rain.gif')


Go to the first, previous, next, last section, table of contents.