man wml::std::grid (Fonctions bibliothèques) - Layout Grid

NAME

wml::std::grid - Layout Grid

SYNOPSIS

 #use wml::std::grid

 <grid [attributes]>
   <cell [attributes]>...</cell>
     :
   <cell [attributes]>...</cell>
 </grid>

DESCRIPTION

The CW<grid> container tag provides a mixture between a HTML table and a TeX-like way of specifying its dimensions and the alignment of its cells.

ATTRIBUTES

First the possible attributes for CW<grid>: This attribute will be inserted into the CWtable tag, see documentation of HTML 4.0 for details on why this attribute is recommended. This specifies the layout of the grid in X and Y dimension, i.e. CW3x2 means 3 columns (x-dimension) and 2 rows (y-dimension). Default is CW1xNCELL where NCELL is the number of cell tags or in other words: Default is a top-down list. This specifies the horizontal alignment of the cells in a row. The argument has to contain as many characters as there are cells in a row. The supported alignment characters are `CWl' (left), `CWr' (right) and `CWc' (center). Default is `CWl...l' (as much CWl's as there are cells in a row). This specifies the vertical alignment of the cells in a column. The argument has to contain as many characters as there are cells in a column. The supported alignment characters are `CWt' (top), `CWb' (bottom) and `CWm' (middle). Default is `CWt...t' (as much CWt's as there are cells in a column). This is the corresponding attribute of the HTML CW<table> tag. Use it to set the width of the grid. Default is no specified width. This is the corresponding attribute to CWcellspacing of the HTML CW<table> tag. Use it to set the spacing of cells in the grid, i.e. the space around the content of each cell. Default is 0 (no space). This is the corresponding attribute to CW<cellpadding> of the HTML CW<table> tag. Use it to set the padding between cells in the grid, i.e. the inter-cell space. Default is 0 (no space). This is the corresponding attribute of the HTML CW<table> tag. Use it to set the border width of the grid. Default is 0 (no border). This is the corresponding attribute of the HTML CW<table> tag. Use it to set the background color of the grid. Default is no specified color. This sets the foreground (text) color of the grid's contents. Actually this sets the default for the same attribute of CW<cell>. Default is no specified color.

Second the possible attributes for CW<cell>: This is the corresponding attribute of the HTML CW<td> tag. Use it to set the horizontal alignment of the cell's contents. Default is taken from the same attribute of CW<grid>. This is the corresponding attribute of the HTML CW<td> tag. Use it to set the vertical alignment of the cell's contents. Default is taken from the same attribute of CW<grid>. This is the corresponding attribute of the HTML CW<td> tag. Use it to set the background color of a particular cell. Default is no specified color. This sets the foreground (text) color of the cell's contents. This is done via the HTML CW<font> tag. Default is no specified color or the color from the same attribute of CW<grid>. This is the corresponding attribute of the HTML CW<td> tag. Use it to span a cell over more then one row of the grid. Default is 1 row. This is the corresponding attribute of the HTML CW<td> tag. Use it to span a cell over more then one column of the grid. Default is 1 column. This is the corresponding attribute of the HTML CW<td> tag. Use it to set the width of the cell. Default is no specified width. This is the corresponding attribute of the HTML CW<td> tag. Use it to set the height of the cell. Default is no specified height.

EXAMPLE

  <grid bgcolor="#000000" color="#ffffff" 
        layout="3x2" align="llr" valign="tm">
    <cell>A</cell> <cell>B</cell> <cell>C</cell>
    <cell>D</cell> <cell>E</cell> <cell>F</cell>
  </grid>

AUTHOR

 Ralf S. Engelschall
 rse@engelschall.com
 www.engelschall.com

REQUIRES

 Internal: P1, P2, P3, P5
 External: --

SEEALSO

HTML <CWtable>-tag.