PPWIZARD Manual
[Bottom][Contents][Search][Prev]: <$P>[Next]: Character Formatting

<$TABLE>

This "OL_DOC.DH" tag is used to position text. This and associated tags allow you to create a nicely formatted table. Note that nesting of tables is not supported.

Other tags associated with tables that are described below are:

The "TABLE" Tag

This tag begins the table, it requires these parameters:

The "TR" Tag

This tag takes no parameters and simply indicates that a new row begins.

The "TH" Tag

This tag takes a single parameter which is the "heading" that a cell will contain. The text is highligted.

The "TC" Tag

This tag takes no parameters and simply indicates that a new column begins.

The "eTable" Tag

This tag takes no parameters and simply indicates the end of the table.

TABLE OPTIONS

The following options are available:

TABLE EXAMPLE

    ;--- Define common table look and feel --------------------------------------
    #define+ OL_DOC_HTML_TABLE  CELLSPACING=10 CELLPADDING=10 BORDER=5
    #define+ OL_DOC_HTML_TD     BGCOLOR=OLIVE
    #define+ OL_DOC_HTML_TH     BGCOLOR=YELLOW
    
    ;--- A Table ----------------------------------------------------------------
    <$Comment "Output a table">
    <$Html "<CENTER>">
    <$Table BORDER WIDTHS='30 40'>
       <$TR>
           <$TH "Main driver is set to<$Colon>">
           <$TH "Set MPU-401 driver to<$Colon>">
       <$eTR>
       <$TR>
           <$TC>Shared<$eTD>
           <$TC>Shared<$eTD>
       <$eTR>
       <$TR>
           <$TC>Multiplexed<$eTD>
           <$TC>Multiplexed<$eTD>
       <$eTR>
       <$TR>
           <$TC>Exclusive<$eTD>
           <$TC>None<$eTD>
       <$eTR>
    <$eTable>
    <$Html "</CENTER><HR>">
    


[Top][Contents][Search][Prev]: <$P>[Next]: Character Formatting

PPWIZARD Manual
My whole website and this manual itself was developed using PPWIZARD (free preprocessor written by Dennis Bareis)
Tuesday January 02 2001 at 7:37am