|
_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 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 additional information, refer to your favorite HTML reference book for further explanation of
the <TABLE> tag.
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">
|