XML FOR DOMINO


table element
Example

Represents a table in rich text.

Containment Hierarchy

Contained by: %richtext.block;

Contains: <border>, <tablecolumn>, <tablerow>, <tablerowstyle>

Syntax

<!ELEMENT table ( tablerowstyle?, border?, tablecolumn*, tablerow* )>

Content

tablerowstyle?, border?, tablecolumn*, tablerow*


Attributes

<!ATTLIST table
widthtype(%table.widthtypes;)#IMPLIED
minrowheight%length;"0"
rowspacing%length;"0"
columnspacing%length;"0"
cellborderstyle(%table.cell.border.styles;)"solid"
cellbordercolor%color;"black"
colorstyle(%table.color.styles;)"none"
bgcolor%color;#IMPLIED
altbgcolor%color;#IMPLIED
leftmargin%lenpct;"1in"
rightmargin%lenpct;"100%"
r4spacing%boolean;"false"
rowdisplay(%table.row.displays;)"all"
rowtimer%integer;#IMPLIED
sizetabsequally%boolean;#IMPLIED
firsttabindent%pixels;#IMPLIED
tablocation(%table.tablocations;)#IMPLIED
outsidewrap%boolean;"false"
insidewrap%boolean;"false"
insidewrapheight%length;#IMPLIED
%html.core.attrs;
%direction.attrs;
>

altbgcolor


bgcolor
columnspacing
cellbordercolor
cellborderstyle
colorstyle
firsttabindent
insidewrap
insidewrapheight
leftmargin
minrowheight
outsidewrap
r4spacing
rightmargin
rowdisplay
rowspacing
rowtimer
sizetabsequally
tablocation
widthtype
Defined entities for <table> element

The %table.tablocations; entity defintes the options for the placement of tabs on a row in a table if the Show only one row at a time option is selected as a table property.

Syntax:

<!ENTITY % table.tablocations "top | left | bottom | right">

bottom


left
right
top
The %table.widthtypes; entity defines the options for the width of a table.

Syntax:

<!ENTITY % table.widthtypes "fixedleft | fixedcenter | fixedright | fitmargins | fitwindow">

fitwindow


fixedcenter
fixedleft
fitmargins
fixedright
The %table.cell.border.styles; entity defines the choices to set the border style around a table cell.

Syntax:

<!ENTITY % table.cell.border.styles "solid | ridge | groove">

groove


ridge
solid
The %table.color.styles; entity defines the choices for table coloring.

Syntax:

<!ENTITY % table.color.styles "none | solid | altrows | altcolumns | lefttop | left | righttop | right | top">

altcolumns


altrows
left
lefttop
none
right
righttop
solid
top
The %table.row.displays; entity defines the different options for displaying each row in a table.

Syntax:

<!ENTITY % table.row.displays "all | tabs | timer | onclick | compute | tabscompute | onclicktimer | onopentimer | captions">

all


captions
compute
onclick
onclicktimer
onopentimer
tabs
tabscompute
timer
Example
See Also