space
Previous Page | Next Page

MDDB Report Viewer 9.2

_OPEN_TABLE_ Method

Outputs the <TABLE> tag for the dynamic HTML pages

Syntax

 
      CALL SEND(OBJID,'_OPEN_TABLE_',brdrvalue,table-width,
           border-color-dark, border-color-light,background-color,
           cell-padding, cell-spacing css-class);
Where... Is Type... And Contains...
brdrvalue C an optional parameter that specifies the table border thickness
table-width C an optional parameter that specifies the width of the table cells (as a percentage of the document width)
border-color-dark C an optional parameter that specifies a table cell border color attribute
border-color-light C an optional parameter that specifies a table cell border color attribute
background-color C an optional parameter that specifies the background color of the table
cell-padding C an optional parameter that specifies the spacing that is inside the table cells
cell-spacing C an optional parameter that specifies the spacing between the table cells
css-class C an optional parameter that specifies the label for a cascading style sheet tag

For further explanation of the <TABLE> tag, refer to your favorite HTML reference documentation.

Example


CALL SEND (webid, '_OPEN_TABLE_', '3', '50', 'RED', 'YELLOW', 'GRAY', '2', 'mytable');

The following output is produced:

 
<TABLE BORDER=3 WIDTH=50% BORDERCOLORDARK=RED BORDERCOLORLIGHT=YELLOW BGCOLOR=GRAY 
    CELLPADDING=2 CELLSPACING=2 CLASS="mytable">

Previous Page | Next Page | Top of Page