blob: f1b96d6ee6d24784fc8efb5b8bd7b27be0f8ed0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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>
|