diff options
Diffstat (limited to 'kword/dtd/tabletemplates.dtd')
-rw-r--r-- | kword/dtd/tabletemplates.dtd | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/kword/dtd/tabletemplates.dtd b/kword/dtd/tabletemplates.dtd new file mode 100644 index 00000000..f1b96d6e --- /dev/null +++ b/kword/dtd/tabletemplates.dtd @@ -0,0 +1,57 @@ +<!-- + A tabletemplate holds pointers to a tablestyle for the first, last row and column and body. + + Name is the name of the tablestyle. + + With topleftcorner, toprightcorner, bottomleftcorner and bottomrightcorner attributes you + can tell KWord that particular corner belongs to that tablestyle. If you use them just give + a value of 1 to it, otherwise leave it out because KWord checks if the attribute is available. +--> + +<!ELEMENT TABLETEMPLATES + (TABLETEMPLATE*)> + +<!ELEMENT TABLETEMPLATE + (NAME|FIRSTROW|LASTROW|FIRSTCOL|LASTCOL|BODYCELL)> + +<!ELEMENT FIRSTROW + EMPTY> +<!ATTLIST FIRSTROW + name CDATA #REQUIRED + topleftcorner CDATA + toprightcorner CDATA> + +<!ELEMENT FIRSTCOL + EMPTY> +<!ATTLIST FIRSTCOL + name CDATA #REQUIRED + topleftcorner CDATA + bottomleftcorner CDATA> + +<!ELEMENT LASTROW + EMPTY> +<!ATTLIST LASTROW + name CDATA #REQUIRED + bottomleftcorner CDATA + bottomrightcorner CDATA> + +<!ELEMENT LASTCOL + EMPTY> +<!ATTLIST LASTCOL + name CDATA #REQUIRED + toprightcorner CDATA + bottomrightcorner CDATA> + +<!ELEMENT BODYCELL + EMPTY> +<!ATTLIST BODYCELL + name CDATA #REQUIRED> + +<!-- + Copied from kword.dtd (01-06-2002) +--> + +<!ELEMENT NAME + EMPTY> +<!ATTLIST NAME + value CDATA #REQUIRED> |