0% found this document useful (0 votes)
608 views89 pages

Api For Odfpy

Uploaded by

Rizky Hardy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
608 views89 pages

Api For Odfpy

Uploaded by

Rizky Hardy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 89

Application Programmer's Interface

for

ODFPY

Contents
1 Introduction.......................................................................................................................................3
2 Creating a document..........................................................................................................................3
2.1 Example.....................................................................................................................................3
3 The OpenDocument classes..............................................................................................................4
4 The Element classes..........................................................................................................................4
4.1 anim module..............................................................................................................................5
4.2 chart module..............................................................................................................................7
4.3 config module..........................................................................................................................11
4.4 dc module.................................................................................................................................12
4.5 dr3d module.............................................................................................................................13
4.6 draw module............................................................................................................................14
4.7 form module.............................................................................................................................23
4.8 manifest module.......................................................................................................................29
4.9 math module............................................................................................................................30
4.10 meta module...........................................................................................................................30
4.11 number module......................................................................................................................32
4.12 office module.........................................................................................................................36
4.13 presentation module...............................................................................................................42
4.14 script module..........................................................................................................................45
4.15 style module...........................................................................................................................45
4.16 svg module.............................................................................................................................54
4.17 table module...........................................................................................................................56
4.18 text module............................................................................................................................71
4.19 xforms module.....................................................................................................................103
5 Examples.......................................................................................................................................103
5.1 Creating a table in OpenDocument text.................................................................................103
5.2 Creating the table as a spreadsheet........................................................................................104
5.3 Photo album...........................................................................................................................105
Copyright © 2007 Søren Roug, European Environment Agency
This library is free software; you can redistribute it and/or modify it under the terms of the GNU
Lesser General Public License as published by the Free Software Foundation; either version 2.1 of
the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library;
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
1 Introduction
Unlike other more convenient APIs, OdfPy is essentially an abstraction layer just above the XML
format. The main focus has been to prevent the programmer from creating invalid documents. It has
checks that raise an exception if the programmer adds an invalid element, adds an attribute
unknown to the grammar, forgets to add a required attribute or adds text to an element that doesn't
allow it.
It is about 90% feature-complete, but remember 90% of the time software is 90% complete.

2 Creating a document
You start the document by instantiating one of the OpenDocumentChart, OpenDocumentDrawing,
OpenDocumentImage, OpenDocumentPresentation, OpenDocumentSpreadsheet or
OpenDocumentText classes.
All of these provide properties you can attach elements to:
● meta
● scripts
● fontfacedecls
● settings
● styles
● automaticstyles
● masterstyles
● body
Additionally, the OpenDocumentText class provides the text property, which is where you add your
text elements. A quick example probably is the best approach to give you an idea.

2.1 Example
from [Link] import OpenDocumentText
from [Link] import Style, TextProperties
from [Link] import H, P, Span

doc = OpenDocumentText()
# Styles
s = [Link]
h1style = Style(name="Heading 1", family="paragraph")
[Link](TextProperties(attributes={'fontsize':"24pt",'fontweight':"bo
ld" }))
[Link](h1style)
# An automatic style
boldstyle = Style(name="Bold", family="text")
boldprop = TextProperties(fontweight="bold")
[Link](boldprop)
[Link](boldstyle)
# Text
h=H(outlinelevel=1, stylename=h1style, text="My first text")
[Link](h)
p = P(text="Hello world. ")
boldpart = Span(stylename="Bold",text="This part is bold. ")
[Link](boldpart)
[Link]("This is after bold.")
[Link](p)
[Link]("[Link]")
3 The OpenDocument classes
The OpenDocumentChart, OpenDocumentDrawing, OpenDocumentImage,
OpenDocumentPresentation, OpenDocumentSpreadsheet and OpenDocumentText classes derive
from the OpenDocument class. They have only two methods:
save(filename, addsuffix=False) This method will write to a file what you have constructed. If
you provide the argument addsuffix=True, it will add the “.od?” suffix
to the filename autmatically based on the class name.
addPicture(filename) Adds a file to the Pictures directory in the zip archive and adds the
new file name to the manifest. Filename must exist. The return value
is the new file name, which you can use for the href attribute in the
Image class.
OpenDocumentChart is used for pie charts etc. It provides the chart property, which is where you
add your elements.
OpenDocumentDrawing is used for vector-based drawings. It provides the drawing property, which
is where you add your elements.
OpenDocumentImage is used for images. It provides the image property, which is where you add
your elements.
OpenDocumentPresentation provides the presentation property, which is where you add your
elements.
OpenDocumentSpreadsheet provides the spreadsheet property, which is where you add your
elements.
OpenDocumentText provides the text property, which is where you add your elements.

4 The Element classes


Every element in the OpenDocument XML format is implemented as a Python class that derives
from the Element class. The Element class has the following methods:
addElement(element) – adds an element as a child to another element. It will check if the
element can legally be a child, and raise an exception if not. This
checking is incomplete.
addText(text) – adds text to an element
addCDATA(cdata) – adds text, but treats it as CDATA.
addAttribute(attr, value) - adds an attribute.
The instantiation of an Element or a derived class is done the normal way you create an instance of
a Python class. You must provide the required attributes. This can be done in two ways; as
arguments, or as an attribute dictionary.
An example of arguments:
from [Link] import Style
h1style = Style(name="Heading 1", family="paragraph")
An example of attributes dictionary:
from [Link] import Style
h1style = Style(attributes={'name':'Heading 1', 'family':'paragraph'})
Additionally, there are two convenient ways to add a text node. As text and cdata:
from odf import text
p = text.P(text=”Hello World\n”)

s = [Link](cdata=”if (y < x) print 'less';”, language=”JavaScript”)


And finally, you can build a list of elements, and then add them in one go:
from [Link] import TextProperties, ParagraphProperties, Style
p = ParagraphProperties(backgroundcolor=”#b80047”)
t = TextProperties(attributes={'fontsize':"24pt",'fontweight':"bold" })
h1style = Style(name="Heading 1", family="paragraph", elements=(p,t))
There are so many elements, and some of them have the same name, that we have organised them in
modules. To use a module you must first import it as a Python module. To create a paragraph do:
from odf import text
p = text.P(text=”Hello World\n”)

4.1 anim module

4.1.1 [Link]
Requires the following attributes: attributename.
Allows the following attributes: accumulate, additive, attributename, by, calcmode, fill, formula,
from, keysplines, keytimes, repeatcount, repeatdur, subitem, targetelement, to, values.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.1.2 [Link]
Requires the following attributes: attributename.
Allows the following attributes: accumulate, additive, attributename, by, calcmode,
colorinterpolation, colorinterpolationdirection, fill, formula, from, keysplines, keytimes, subitem,
targetelement, to, values.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.1.3 [Link]
Requires the following attributes: attributename.
Allows the following attributes: accumulate, additive, attributename, by, calcmode, fill, formula,
from, keysplines, keytimes, origin, path, subitem, targetelement, to, values.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.1.4 [Link]
Requires the following attributes: attributename, type.
Allows the following attributes: accumulate, additive, attributename, by, fill, formula, from,
subitem, targetelement, to, type, values.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.1.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: audiolevel, begin, dur, end, groupid, href, id, masterelement,
nodetype, presetclass, presetid, presetsubtype, repeatcount, repeatdur.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.1.6 [Link]
Requires the following attributes: command.
Allows the following attributes: begin, command, end, groupid, id, masterelement, nodetype,
presetclass, presetid, presetsubtype, subitem, targetelement.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link].

4.1.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: accelerate, autoreverse, begin, decelerate, dur, end, endsync, fill,
filldefault, groupid, id, iterateinterval, iteratetype, masterelement, nodetype, presetclass, presetid,
presetsubtype, repeatcount, repeatdur, restart, restartdefault, targetelement.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].

4.1.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: accelerate, autoreverse, begin, decelerate, dur, end, endsync, fill,
filldefault, groupid, id, masterelement, nodetype, presetclass, presetid, presetsubtype, repeatcount,
repeatdur, restart, restartdefault.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].

4.1.9 [Link]
Requires the following attributes: name, value.
Allows the following attributes: name, value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.1.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: accelerate, autoreverse, begin, decelerate, dur, end, endsync, fill,
filldefault, groupid, id, masterelement, nodetype, presetclass, presetid, presetsubtype, repeatcount,
repeatdur, restart, restartdefault.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].

4.1.11 [Link]
Requires the following attributes: attributename.
Allows the following attributes: accumulate, additive, attributename, fill, subitem, targetelement,
to.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.1.12 [Link]
Requires the following attributes: type.
Allows the following attributes: accumulate, additive, by, calcmode, direction, fadecolor, fill,
formula, from, mode, subitem, subtype, targetelement, to, type, values.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.2 chart module

4.2.1 [Link]
Requires the following attributes: dimension.
Allows the following attributes: dimension, name, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link].

4.2.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: cellrangeaddress.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.3 [Link]
Requires the following attributes: class.
Allows the following attributes: class, columnmapping, height, rowmapping, stylename, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link].

4.2.4 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: repeated, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: cellrangeaddress.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: cellrange, stylename, x, y.
These elements contain [Link]: [Link].
The following elements occur in [Link]: text.P.

4.2.9 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: class, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: legendalign, legendexpansion, legendexpansionaspectratio,
legendposition, stylename, x, y.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.11 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: ambientcolor, cellrangeaddress, datasourcehaslabels, distance,
focallength, height, lightingmode, projection, shademode, shadowslant, stylename, transform, vpn,
vrp, vup, width, x, y.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link].

4.2.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.14 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: attachedaxis, class, labelcelladdress, stylename,
valuescellrangeaddress.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link].
4.2.15 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.16 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.17 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.18 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: cellrange, stylename, x, y.
These elements contain [Link]: [Link].
The following elements occur in [Link]: text.P.

4.2.19 [Link]
Requires the following attributes: href.
Allows the following attributes: href.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.2.20 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: cellrange, stylename, x, y.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: text.P.

4.2.21 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.3 config module

4.3.1 [Link]
Requires the following attributes: name, type.
Allows the following attributes: name, type.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.3.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name.
These elements contain [Link]: [Link],
[Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link].

4.3.3 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: [Link],
[Link].
The following elements occur in [Link]: [Link].

4.3.4 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: [Link],
[Link].
The following elements occur in [Link]: [Link].

4.3.5 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: [Link], [Link],
[Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link].

4.4 dc module

4.4.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.4.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.4.3 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.4.4 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.4.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.4.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.5 dr3d module

4.5.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: classnames, id, layer, maxedge, minedge, stylename, transform,
zindex.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.5.2 [Link]
Requires the following attributes: d, viewbox.
Allows the following attributes: classnames, d, id, layer, stylename, transform, viewbox, zindex.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.5.3 [Link]
Requires the following attributes: direction.
Allows the following attributes: diffusecolor, direction, enabled, specular.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.5.4 [Link]
Requires the following attributes: d, viewbox.
Allows the following attributes: classnames, d, id, layer, stylename, transform, viewbox, zindex.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.5.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: ambientcolor, anchorpagenumber, anchortype, classnames,
distance, endcelladdress, endx, endy, focallength, height, id, layer, lightingmode, projection,
shademode, shadowslant, stylename, tablebackground, transform, vpn, vrp, vup, width, x, y, zindex.
These elements contain [Link]: [Link], draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link], [Link],
[Link], [Link].

4.5.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: center, classnames, id, layer, size, stylename, transform, zindex.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6 draw module

4.6.1 draw.A
Requires the following attributes: href.
Allows the following attributes: actuate, href, name, servermap, show, targetframename, type.
These elements contain draw.A: [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in draw.A: [Link].

4.6.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, archive, code, href, mayscript, object, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.6.3 [Link]
Requires the following attributes: cx, cy, r.
Allows the following attributes: cx, cy, href, name, nohref, r, show, targetframename, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.6.4 [Link]
Requires the following attributes: height, points, viewbox, width, x, y.
Allows the following attributes: height, href, name, nohref, points, show, targetframename, type,
viewbox, width, x, y.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.6.5 [Link]
Requires the following attributes: height, width, x, y.
Allows the following attributes: height, href, name, nohref, show, targetframename, type, width, x,
y.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.6.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, captionpointx, captionpointy,
classnames, cornerradius, endcelladdress, endx, endy, height, id, layer, name, stylename,
tablebackground, textstylename, transform, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
text.P.

4.6.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, classnames, cx, cy, endangle,
endcelladdress, endx, endy, height, id, kind, layer, name, r, startangle, stylename, tablebackground,
textstylename, transform, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
text.P.

4.6.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, classnames, endcelladdress,
endgluepoint, endshape, endx, endy, id, layer, lineskew, name, startgluepoint, startshape,
stylename, tablebackground, textstylename, transform, type, x1, x2, y1, y2, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
text.P.

4.6.9 [Link]
Requires the following attributes: d, recreateonedit, viewbox.
Allows the following attributes: d, height, recreateonedit, viewbox, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.6.10 [Link]
Requires the following attributes: points, recreateonedit, viewbox.
Allows the following attributes: height, points, recreateonedit, viewbox, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.11 [Link]
Requires the following attributes: control.
Allows the following attributes: anchorpagenumber, anchortype, classnames, control,
endcelladdress, endx, endy, height, id, layer, name, stylename, tablebackground, textstylename,
transform, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link].

4.6.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, classnames, data, endcelladdress,
endx, endy, engine, height, id, layer, name, stylename, tablebackground, textstylename, transform,
width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], text.P.

4.6.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, classnames, cx, cy, endangle,
endcelladdress, endx, endy, height, id, kind, layer, name, rx, ry, startangle, stylename,
tablebackground, textstylename, transform, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
text.P.

4.6.14 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: concentricgradientfillallowed, enhancedpath, extrusion,
extrusionallowed, extrusionbrightness, extrusioncolor, extrusiondepth, extrusiondiffusion,
extrusionfirstlightdirection, extrusionfirstlightharsh, extrusionfirstlightlevel, extrusionlightface,
extrusionmetal, extrusionnumberoflinesegments, extrusionorigin, extrusionrotationangle,
extrusionrotationcenter, extrusionsecondlightdirection, extrusionsecondlightharsh,
extrusionsecondlightlevel, extrusionshininess, extrusionskew, extrusionspecularity,
extrusionviewpoint, gluepointleavingdirections, gluepoints, gluepointtype, mirrorhorizontal,
mirrorvertical, modifiers, pathstretchpointx, pathstretchpointy, projection, shademode, textareas,
textpath, textpathallowed, textpathmode, textpathsameletterheights, textpathscale, textrotateangle,
type, viewbox.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.6.15 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: formula, name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.16 [Link]
Requires the following attributes: href, name.
Allows the following attributes: actuate, displayname, height, href, name, show, type, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.17 [Link]
Requires the following attributes: href.
Allows the following attributes: actuate, framename, href, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.18 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, class, classnames, copyof,
endcelladdress, endx, endy, height, id, layer, name, placeholder, relheight, relwidth, stylename,
tablebackground, textstylename, transform, usertransformed, width, x, y, zindex.
These elements contain [Link]: draw.A, draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], text.A, [Link], text.H, [Link], [Link],
[Link], text.P, [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link].

4.6.19 draw.G
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, classnames, endcelladdress, endx,
endy, id, name, stylename, tablebackground, y, zindex.
These elements contain draw.G: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in draw.G: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], draw.G, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link].
4.6.20 [Link]
Requires the following attributes: align, id, x, y.
Allows the following attributes: align, id, x, y.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], draw.G, [Link], [Link],
[Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.6.21 [Link]
Requires the following attributes: style.
Allows the following attributes: angle, border, cx, cy, displayname, endcolor, endintensity, name,
startcolor, startintensity, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.22 [Link]
Requires the following attributes: handleposition.
Allows the following attributes: handlemirrorhorizontal, handlemirrorvertical, handlepolar,
handleposition, handleradiusrangemaximum, handleradiusrangeminimum, handlerangexmaximum,
handlerangexminimum, handlerangeymaximum, handlerangeyminimum, handleswitched.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.23 [Link]
Requires the following attributes: name, style.
Allows the following attributes: color, displayname, distance, name, rotation, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.24 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, filtername, href, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], text.P.

4.6.25 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.6.26 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, name, protected.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.6.27 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.6.28 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, classnames, endcelladdress, endx,
endy, id, layer, name, stylename, tablebackground, textstylename, transform, x1, x2, y1, y2, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link], text.P.

4.6.29 [Link]
Requires the following attributes: d, name, viewbox.
Allows the following attributes: d, displayname, name, viewbox.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.30 [Link]
Requires the following attributes: x1, x2, y1, y2.
Allows the following attributes: anchorpagenumber, anchortype, classnames, endcelladdress, endx,
endy, id, layer, name, stylename, tablebackground, textstylename, transform, x1, x2, y1, y2, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
text.P.

4.6.31 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, href, notifyonupdateofranges, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.6.32 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, classid, href, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.6.33 [Link]
Requires the following attributes: style.
Allows the following attributes: angle, border, cx, cy, displayname, end, name, start, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.6.34 [Link]
Requires the following attributes: masterpagename.
Allows the following attributes: id, masterpagename, name, presentationpagelayoutname,
stylename, usedatetimename, usefootername, useheadername.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link].

4.6.35 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, class, classnames,
endcelladdress, endx, endy, height, id, layer, name, pagenumber, placeholder, stylename,
tablebackground, transform, usertransformed, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.6.36 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name, value.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.6.37 [Link]
Requires the following attributes: d, viewbox.
Allows the following attributes: anchorpagenumber, anchortype, classnames, d, endcelladdress,
endx, endy, height, id, layer, name, stylename, tablebackground, textstylename, transform, viewbox,
width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link], text.P.

4.6.38 [Link]
Requires the following attributes: href.
Allows the following attributes: actuate, href, mimetype, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.6.39 [Link]
Requires the following attributes: points, viewbox.
Allows the following attributes: anchorpagenumber, anchortype, classnames, endcelladdress, endx,
endy, height, id, layer, name, points, stylename, tablebackground, textstylename, transform,
viewbox, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
text.P.

4.6.40 [Link]
Requires the following attributes: points, viewbox.
Allows the following attributes: anchorpagenumber, anchortype, classnames, endcelladdress, endx,
endy, height, id, layer, name, points, stylename, tablebackground, textstylename, transform,
viewbox, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
text.P.

4.6.41 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, classnames, cornerradius,
endcelladdress, endx, endy, height, id, layer, name, stylename, tablebackground, textstylename,
transform, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link], text.P.

4.6.42 [Link]
Requires the following attributes: corners.
Allows the following attributes: anchorpagenumber, anchortype, classnames, concave, corners,
endcelladdress, endx, endy, height, id, layer, name, sharpness, stylename, tablebackground,
textstylename, transform, width, x, y, zindex.
These elements contain [Link]: draw.G, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], text.H, [Link], [Link], [Link], text.P,
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], text.P.

4.6.43 [Link]
Requires the following attributes: name.
Allows the following attributes: displayname, distance, dots1, dots1length, dots2, dots2length,
name, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.6.44 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: chainnextname, cornerradius, maxheight, maxwidth, minheight,
minwidth.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], text.H, [Link], [Link],
[Link], [Link], text.P, [Link], [Link],
[Link], [Link].

4.7 form module

4.7.1 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, buttontype, controlimplementation, defaultbutton, disabled,
focusonclick, href, id, imagealign, imagedata, imageposition, label, name, printable, tabindex,
tabstop, targetframe, title, toggle, value, xformssubmission.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.2 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, currentstate, datafield, disabled, id,
imagealign, imageposition, istristate, label, name, printable, state, tabindex, tabstop, title, value,
visualeffect.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.3 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: controlimplementation, label, name, textstylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link].

4.7.4 [Link]
Requires the following attributes: id.
Allows the following attributes: autocomplete, bind, controlimplementation, convertemptytonull,
currentvalue, datafield, disabled, dropdown, id, listsource, listsourcetype, maxlength, name,
printable, readonly, size, tabindex, tabstop, title, value.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.7.5 [Link]
Requires the following attributes: href.
Allows the following attributes: href.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.7.6 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, convertemptytonull, currentvalue,
datafield, disabled, id, maxlength, maxvalue, minvalue, name, printable, readonly, tabindex,
tabstop, title, value.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.7 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, currentvalue, disabled, id,
maxlength, name, printable, readonly, tabindex, tabstop, title, value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.8 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, disabled, for, id, label, multiline,
name, printable, title.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.9 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, allowdeletes, allowinserts, allowupdates, applyfilter,
command, commandtype, controlimplementation, datasource, detailfields, enctype,
escapeprocessing, filter, href, ignoreresult, masterfields, method, name, navigationmode, order,
tabcycle, targetframe, type.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].

4.7.10 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, convertemptytonull, currentvalue,
datafield, disabled, id, maxlength, maxvalue, minvalue, name, printable, readonly, tabindex,
tabstop, title, validation, value.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.11 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, disabled, for, id, label, name,
printable, title.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.12 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, id, name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.13 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, disabled, id, name, printable,
tabindex, tabstop, title.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link].

4.7.14 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, id, name, value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.15 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, buttontype, controlimplementation, disabled, href, id,
imagedata, name, printable, tabindex, tabstop, targetframe, title, value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.16 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, datafield, disabled, id, imagedata,
name, printable, readonly, title.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.17 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: label.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.7.18 [Link]
Requires the following attributes: propertyname.
Allows the following attributes: propertyname, valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]:
[Link]
alue.

4.7.19 [Link]
Requires the following attributes: stringvalue.
Allows the following attributes: stringvalue.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.7.20 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, boundcolumn, controlimplementation, datafield, disabled,
dropdown, id, listsource, listsourcetype, multiple, name, printable, size, tabindex, tabstop, title,
xformslistsource.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link].

4.7.21 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, convertemptytonull, currentvalue,
datafield, disabled, id, maxlength, maxvalue, minvalue, name, printable, readonly, tabindex,
tabstop, title, value.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.22 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: currentselected, label, selected, value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.7.23 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, convertemptytonull, disabled,
echochar, id, maxlength, name, printable, tabindex, tabstop, title, value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.24 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.25 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: booleanvalue, currency, datevalue, propertyname, stringvalue,
timevalue, value, valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.7.26 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, currentselected, datafield, disabled,
id, imagealign, imageposition, label, name, printable, selected, tabindex, tabstop, title, value,
visualeffect.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.27 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, convertemptytonull, currentvalue,
datafield, disabled, id, maxlength, name, printable, readonly, tabindex, tabstop, title, value.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.28 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, convertemptytonull, currentvalue,
datafield, disabled, id, maxlength, name, printable, readonly, tabindex, tabstop, title, value.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], text.P.

4.7.29 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, convertemptytonull, currentvalue,
datafield, disabled, id, maxlength, maxvalue, minvalue, name, printable, readonly, tabindex,
tabstop, title, value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.7.30 [Link]
Requires the following attributes: id.
Allows the following attributes: bind, controlimplementation, delayforrepeat, disabled, id,
maxvalue, minvalue, name, orientation, pagestepsize, printable, stepsize, tabindex, tabstop, title,
value.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.8 manifest module

4.8.1 [Link]
Requires the following attributes: algorithmname, initialisationvector.
Allows the following attributes: algorithmname, initialisationvector.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.8.2 [Link]
Requires the following attributes: checksum, checksumtype.
Allows the following attributes: checksum, checksumtype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.8.3 [Link]
Requires the following attributes: fullpath, mediatype.
Allows the following attributes: fullpath, mediatype, size.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.8.4 [Link]
Requires the following attributes: iterationcount, keyderivationname, salt.
Allows the following attributes: iterationcount, keyderivationname, salt.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.8.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: This is a toplevel element.
The following elements occur in [Link]: [Link].

4.9 math module

4.9.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: Any element is allowed.

4.10 meta module

4.10.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, delay, href, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.10.3 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.4 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: cellcount, charactercount, drawcount, framecount, imagecount,
nonwhitespacecharactercount, objectcount, oleobjectcount, pagecount, paragraphcount, rowcount,
sentencecount, syllablecount, tablecount, wordcount.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: show, targetframename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.9 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.11 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, date, href, title, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.10.14 [Link]
Requires the following attributes: name.
Allows the following attributes: name, valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11 number module

4.11.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.11.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.3 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: country, language, name, title, transliterationcountry,
transliterationformat, transliterationlanguage, transliterationstyle, volatile.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link].
4.11.4 [Link]
Requires the following attributes: name.
Allows the following attributes: automaticorder, country, language, name, title,
transliterationcountry, transliterationformat, transliterationlanguage, transliterationstyle, volatile.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link], [Link].

4.11.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: country, language.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.6 [Link]
Requires the following attributes: name.
Allows the following attributes: automaticorder, country, formatsource, language, name, title,
transliterationcountry, transliterationformat, transliterationlanguage, transliterationstyle, volatile.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link].

4.11.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: calendar, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: calendar, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.9 [Link]
Requires the following attributes: position.
Allows the following attributes: position.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: calendar, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.11.11 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: denominatorvalue, grouping, mindenominatordigits,
minintegerdigits, minnumeratordigits.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: style.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.11.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: style.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.11.14 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: calendar, possessiveform, style, textual.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.15 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: decimalplaces, decimalreplacement, displayfactor, grouping,
minintegerdigits.
These elements contain [Link]: [Link], [Link],
[Link].
The following elements occur in [Link]: [Link].

4.11.16 [Link]
Requires the following attributes: name.
Allows the following attributes: country, language, name, title, transliterationcountry,
transliterationformat, transliterationlanguage, transliterationstyle, volatile.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link].

4.11.17 [Link]
Requires the following attributes: name.
Allows the following attributes: country, language, name, title, transliterationcountry,
transliterationformat, transliterationlanguage, transliterationstyle, volatile.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link].
4.11.18 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: calendar, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.19 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: decimalplaces, grouping, minexponentdigits, minintegerdigits.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.20 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: decimalplaces, style.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.11.21 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.11.22 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.23 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: country, language, name, title, transliterationcountry,
transliterationformat, transliterationlanguage, transliterationstyle, volatile.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link].

4.11.24 [Link]
Requires the following attributes: name.
Allows the following attributes: country, formatsource, language, name, title,
transliterationcountry, transliterationformat, transliterationlanguage, transliterationstyle,
truncateonoverflow, volatile.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link].
4.11.25 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: calendar.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.11.26 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: calendar, style.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.12 office module

4.12.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: anchorpagenumber, anchortype, captionpointx, captionpointy,
classnames, cornerradius, display, endcelladdress, endx, endy, height, id, layer, name, stylename,
tablebackground, textstylename, transform, width, x, y, zindex.
These elements contain [Link]: [Link], [Link], text.A, text.H,
text.P, [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link], [Link],
text.P.

4.12.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link].

4.12.3 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.12.4 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link].
4.12.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link], text.P.

4.12.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].

4.12.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: automaticupdate, conversionmode, ddeapplication, ddeitem,
ddetopic, name.
These elements contain [Link]: [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.12.8 [Link]
Requires the following attributes: mimetype.
Allows the following attributes: mimetype, version.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link].

4.12.9 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: version.
These elements contain [Link]: This is a toplevel element.
The following elements occur in [Link]: [Link], [Link],
[Link], [Link].

4.12.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: version.
These elements contain [Link]: This is a toplevel element.
The following elements occur in [Link]: [Link].

4.12.11 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: version.
These elements contain [Link]: This is a toplevel element.
The following elements occur in [Link]: [Link].
4.12.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: version.
These elements contain [Link]: This is a toplevel element.
The following elements occur in [Link]: [Link],
[Link], [Link], [Link].

4.12.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].

4.12.14 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], draw.G, [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], text.A, [Link].
The following elements occur in [Link]: [Link],
[Link].

4.12.15 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link].
The following elements occur in [Link]: [Link].

4.12.16 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: applydesignmode, automaticfocus.
These elements contain [Link]: [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.12.17 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].
4.12.18 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.12.19 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link].

4.12.20 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link],
[Link], [Link].

4.12.21 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: language.
These elements contain [Link]: [Link].
The following elements occur in [Link]: Any element is allowed.

4.12.22 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.12.23 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.12.24 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: protectionkey, structureprotected.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link],
[Link], [Link].

4.12.25 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link],
[Link], [Link], [Link], [Link].

4.12.26 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: global.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], text.H, [Link], [Link],
[Link], [Link], text.P, [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link].

4.13 presentation module

4.13.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link], [Link],
[Link].

4.13.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link], [Link],
[Link], [Link].
4.13.3 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.13.4 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, name, source.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.13.5 [Link]
Requires the following attributes: color, shapeid.
Allows the following attributes: color, shapeid.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.13.6 [Link]
Requires the following attributes: action, eventname.
Allows the following attributes: action, actuate, direction, effect, eventname, href, show, speed,
startscale, type, verb.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.13.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.13.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.13.9 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.13.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.13.11 [Link]
Requires the following attributes: shapeid.
Allows the following attributes: delay, direction, effect, pathid, shapeid, speed, startscale.
These elements contain [Link]: [Link],
[Link].
The following elements occur in [Link]: [Link].

4.13.12 [Link]
Requires the following attributes: shapeid.
Allows the following attributes: delay, direction, effect, pathid, shapeid, speed, startscale.
These elements contain [Link]: [Link],
[Link].
The following elements occur in [Link]: [Link].

4.13.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: pagelayoutname, stylename, usedatetimename, usefootername,
useheadername.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link].

4.13.14 [Link]
Requires the following attributes: height, object, width, x, y.
Allows the following attributes: height, object, width, x, y.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.13.15 [Link]
Requires the following attributes: shapeid.
Allows the following attributes: shapeid, speed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.13.16 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: animations, endless, forcemanual, fullscreen, mouseaspen,
mousevisible, pause, show, showlogo, startpage, startwithnavigator, stayontop, transitiononclick.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.13.17 [Link]
Requires the following attributes: name, pages.
Allows the following attributes: name, pages.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.13.18 [Link]
Requires the following attributes: shapeid.
Allows the following attributes: delay, direction, effect, pathid, shapeid, speed, startscale.
These elements contain [Link]: [Link],
[Link].
The following elements occur in [Link]: [Link].

4.13.19 [Link]
Requires the following attributes: shapeid.
Allows the following attributes: delay, direction, effect, pathid, shapeid, speed, startscale.
These elements contain [Link]: [Link],
[Link].
The following elements occur in [Link]: [Link].

4.13.20 [Link]
Requires the following attributes: href.
Allows the following attributes: actuate, href, playfull, show, type.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.14 script module

4.14.1 [Link]
Requires the following attributes: eventname, language.
Allows the following attributes: actuate, eventname, href, language, macroname, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.15 style module

4.15.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, filtername, href, opacity, position, repeat, show, type.
These elements contain [Link]: [Link],
[Link], [Link], [Link],
[Link], [Link], [Link],
[Link].
The following elements occur in [Link]: [Link].

4.15.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: connectbars, datalabelnumber, datalabelsymbol, datalabeltext,
deep, direction, displaylabel, errorcategory, errorlowerindicator, errorlowerlimit, errormargin,
errorpercentage, errorupperindicator, errorupperlimit, gapwidth, interpolation, intervalmajor,
intervalminor, japanesecandlestick, labelarrangement, linebreak, lines, linkdatastyletosource,
logarithmic, maximum, meanvalue, minimum, origin, overlap, percentage, pieoffset,
regressiontype, rotationangle, scaletext, seriessource, solidtype, splineorder, splineresolution,
stacked, symbolheight, symboltype, symbolwidth, textoverlap, threedimensional,
tickmarksmajorinner, tickmarksmajorouter, tickmarksminorinner, tickmarksminorouter, vertical,
visible.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.15.3 [Link]
Requires the following attributes: relwidth.
Allows the following attributes: endindent, relwidth, spaceafter, spacebefore, startindent.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.15.4 [Link]
Requires the following attributes: width.
Allows the following attributes: color, height, style, verticalalign, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.15.5 [Link]
Requires the following attributes: columncount.
Allows the following attributes: columncount, columngap.
These elements contain [Link]: [Link], [Link],
[Link].
The following elements occur in [Link]: [Link], [Link].

4.15.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: family.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link],
[Link], [Link], [Link],
[Link], [Link], [Link],
[Link].

4.15.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: backgroundobjectsvisible, backgroundsize, backgroundvisible,
direction, displaydatetime, displayfooter, displayheader, displaypagenumber, duration, fadecolor,
fill, fillcolor, fillgradientname, fillhatchname, fillhatchsolid, fillimageheight, fillimagename,
fillimagerefpoint, fillimagerefpointx, fillimagerefpointy, fillimagewidth, fillrule, gradientstepcount,
opacity, opacityname, repeat, secondaryfillcolor, subtype, tilerepeatoffset, transitionspeed,
transitionstyle, transitiontype, type, visibility.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.15.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: distance, length, lines, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.15.9 [Link]
Requires the following attributes: name.
Allows the following attributes: accentheight, alphabetic, ascent, bbox, capheight, descent,
fontadornments, fontcharset, fontfamily, fontfamilygeneric, fontpitch, fontsize, fontstretch, fontstyle,
fontvariant, fontweight, hanging, ideographic, mathematical, name, overlineposition,
overlinethickness, panose1, slope, stemh, stemv, strikethroughposition, strikethroughthickness,
underlineposition, underlinethickness, unicoderange, unitsperem, valphabetic, vhanging,
videographic, vmathematical, widths, xheight.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.15.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, dynamicspacing.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
text.H, [Link], [Link], [Link], [Link], text.P, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link].

4.15.11 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, dynamicspacing.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
text.H, [Link], [Link], [Link], [Link], text.P, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link].

4.15.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.15.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: adjustment, color, distanceaftersep, distancebeforesep, linestyle,
relwidth, width.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.15.14 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: ambientcolor, anchorpagenumber, anchortype, animation,
animationdelay, animationdirection, animationrepeat, animationstartinside, animationsteps,
animationstopinside, autogrowheight, autogrowwidth, backfaceculling, backgroundcolor,
backscale, blue, border, borderbottom, borderleft, borderlinewidth, borderlinewidthbottom,
borderlinewidthleft, borderlinewidthright, borderlinewidthtop, borderright, bordertop,
captionangle, captionangletype, captionescape, captionescapedirection, captionfitlinelength,
captiongap, captionlinelength, captiontype, clip, closeback, closefront, colorinversion, colormode,
contrast, decimalplaces, depth, diffusecolor, edgerounding, edgeroundingmode, editable,
emissivecolor, endangle, endguide, endlinespacinghorizontal, endlinespacingvertical, fill, fillcolor,
fillgradientname, fillhatchname, fillhatchsolid, fillimageheight, fillimagename, fillimagerefpoint,
fillimagerefpointx, fillimagerefpointy, fillimagewidth, fillrule, fittocontour, fittosize, flowwithtext,
framedisplayborder, framedisplayscrollbar, framemarginhorizontal, framemarginvertical, gamma,
gradientstepcount, green, guidedistance, guideoverhang, height, horizontalpos, horizontalrel,
horizontalsegments, imageopacity, lightingmode, linedistance, luminance, margin, marginbottom,
marginleft, marginright, margintop, markerend, markerendcenter, markerendwidth, markerstart,
markerstartcenter, markerstartwidth, maxheight, maxwidth, measurealign, measureverticalalign,
minheight, minwidth, mirror, normalsdirection, normalskind, numberwrappedparagraphs,
oledrawaspect, opacity, opacityname, overflowbehavior, padding, paddingbottom, paddingleft,
paddingright, paddingtop, parallel, placing, printcontent, protect, red, relheight, relwidth, repeat,
runthrough, secondaryfillcolor, shadow, shadow, shadow, shadowcolor, shadowoffsetx,
shadowoffsety, shadowopacity, shininess, showunit, specularcolor, startguide,
startlinespacinghorizontal, startlinespacingvertical, stroke, strokecolor, strokedash,
strokedashnames, strokelinejoin, strokeopacity, strokewidth, symbolcolor, textareahorizontalalign,
textareaverticalalign, texturefilter, texturegenerationmodex, texturegenerationmodey, texturekind,
texturemode, tilerepeatoffset, unit, verticalpos, verticalrel, verticalsegments, visibleareaheight,
visiblearealeft, visibleareatop, visibleareawidth, width, wrap, wrapcontour, wrapcontourmode,
wrapdynamictreshold, wrapinfluenceonposition, wrapoption, x, y.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.15.15 [Link]
Requires the following attributes: pagelayoutname.
Allows the following attributes: pagelayoutname, presentationpagelayoutname, stylename,
usedatetimename, usefootername, useheadername.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link].

4.15.16 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, dynamicspacing.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
text.H, [Link], [Link], [Link], [Link], text.P, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link].

4.15.17 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: backgroundcolor, border, borderbottom, borderleft,
borderlinewidth, borderlinewidthbottom, borderlinewidthleft, borderlinewidthright,
borderlinewidthtop, borderright, bordertop, height, margin, marginbottom, marginleft,
marginright, margintop, minheight, padding, paddingbottom, paddingleft, paddingright,
paddingtop, shadow.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.15.18 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, dynamicspacing.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
text.H, [Link], [Link], [Link], [Link], text.P, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link].

4.15.19 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.15.20 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fontname, height, minlabeldistance, minlabelwidth, spacebefore,
textalign, verticalpos, verticalrel, width.
These elements contain [Link]: [Link],
[Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.15.21 [Link]
Requires the following attributes: applystylename, condition.
Allows the following attributes: applystylename, basecelladdress, condition.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.15.22 [Link]
Requires the following attributes: name, pagelayoutname.
Allows the following attributes: displayname, name, nextstylename, pagelayoutname, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link].

4.15.23 [Link]
Requires the following attributes: name.
Allows the following attributes: name, pageusage.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.15.24 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name, pageusage.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link].

4.15.25 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: autotextindent, backgroundcolor, backgroundtransparency,
border, borderbottom, borderleft, borderlinewidth, borderlinewidthbottom, borderlinewidthleft,
borderlinewidthright, borderlinewidthtop, borderright, bordertop, breakafter, breakbefore,
fontindependentlinespacing, hyphenationkeep, hyphenationladdercount, justifysingleword,
keeptogether, keepwithnext, linebreak, lineheight, lineheightatleast, linenumber, linespacing,
margin, marginbottom, marginleft, marginright, margintop, numberlines, orphans, padding,
paddingbottom, paddingleft, paddingright, paddingtop, pagenumber, punctuationwrap,
registertrue, shadow, snaptolayoutgrid, tabstopdistance, textalign, textalignlast, textautospace,
textindent, verticalalign, widows, writingmode, writingmodeautomatic.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link],
[Link], [Link].

4.15.26 [Link]
Requires the following attributes: name.
Allows the following attributes: displayname, name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.15.27 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: text.P.

4.15.28 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: text.P.

4.15.29 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: text.P.

4.15.30 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: rubyalign, rubyposition.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.15.31 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: dontbalancetextcolumns, protect, writingmode.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.15.32 [Link]
Requires the following attributes: name.
Allows the following attributes: autoupdate, class, datastylename, defaultoutlinelevel, displayname,
family, liststylename, masterpagename, name, nextstylename, parentstylename.
These elements contain [Link]: [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link],
[Link], [Link], [Link].

4.15.33 [Link]
Requires the following attributes: position.
Allows the following attributes: char, leadercolor, leaderstyle, leadertext, leadertextstyle,
leadertype, leaderwidth, position, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.15.34 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.15.35 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: backgroundcolor, border, borderbottom, borderleft,
borderlinewidth, borderlinewidthbottom, borderlinewidthleft, borderlinewidthright,
borderlinewidthtop, borderright, bordertop, cellprotect, decimalplaces, diagonalbltr,
diagonalbltrwidths, diagonaltlbr, diagonaltlbrwidths, direction, glyphorientationvertical, padding,
paddingbottom, paddingleft, paddingright, paddingtop, printcontent, repeatcontent, rotationalign,
rotationangle, shadow, shrinktofit, textalignsource, verticalalign, wrapoption.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.15.36 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: breakafter, breakbefore, columnwidth, relcolumnwidth,
useoptimalcolumnwidth.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.15.37 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: align, backgroundcolor, bordermodel, breakafter, breakbefore,
display, keepwithnext, margin, marginbottom, marginleft, marginright, margintop,
maybreakbetweenrows, pagenumber, relwidth, shadow, width, writingmode.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.15.38 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: backgroundcolor, breakafter, breakbefore, keeptogether,
minrowheight, rowheight, useoptimalrowheight.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.15.39 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: backgroundcolor, color, condition, country, countryasian,
countrycomplex, display, fontcharset, fontfamily, fontfamilyasian, fontfamilycomplex,
fontfamilygeneric, fontfamilygenericasian, fontfamilygenericcomplex, fontname, fontpitch,
fontpitchasian, fontpitchcomplex, fontrelief, fontsize, fontsizeasian, fontsizecomplex, fontsizerel,
fontsizerelasian, fontsizerelcomplex, fontstyle, fontstyleasian, fontstylecomplex, fontstylename,
fontstylenameasian, fontstylenamecomplex, fontvariant, fontweight, fontweightasian,
fontweightcomplex, hyphenate, hyphenationpushcharcount, hyphenationremaincharcount,
language, languageasian, languagecomplex, letterkerning, letterspacing, scripttype, textblinking,
textcombine, textcombineendchar, textcombinestartchar, textemphasize, textlinethroughcolor,
textlinethroughmode, textlinethroughstyle, textlinethroughtext, textlinethroughtextstyle,
textlinethroughtype, textlinethroughwidth, textoutline, textposition, textrotationangle,
textrotationscale, textscale, textshadow, texttransform, textunderlinecolor, textunderlinemode,
textunderlinestyle, textunderlinetype, textunderlinewidth, usewindowfontcolor.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.16 svg module

4.16.1 [Link]
Requires the following attributes: href.
Allows the following attributes: actuate, href, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.16.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.16.3 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: string.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.16.4 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.16.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.16.6 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, href, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.16.7 [Link]
Requires the following attributes: name.
Allows the following attributes: displayname, gradienttransform, gradientunits, name,
spreadmethod, x1, x2, y1, y2.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].
4.16.8 [Link]
Requires the following attributes: name.
Allows the following attributes: cx, cy, displayname, fx, fy, gradienttransform, gradientunits, name,
r, spreadmethod.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.16.9 [Link]
Requires the following attributes: offset.
Allows the following attributes: offset, stopcolor, stopopacity.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17 table module

4.17.1 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.2 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: automaticfindlabels, casesensitive, nullyear, precisionasshown,
searchcriteriamustapplytowholecell, useregularexpressions.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.17.3 [Link]
Requires the following attributes: column, row, table.
Allows the following attributes: column, row, table.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17.4 [Link]
Requires the following attributes: id.
Allows the following attributes: acceptancestate, id, rejectingchangeid.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link].

4.17.5 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: id.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].
4.17.6 [Link]
Requires the following attributes: href, lastcolumnspanned, lastrowspanned, name.
Allows the following attributes: actuate, filtername, filteroptions, href, lastcolumnspanned,
lastrowspanned, name, refreshdelay, type.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17.7 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: id.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: booleanvalue, celladdress, currency, datevalue, formula,
matrixcovered, numbermatrixcolumnsspanned, numbermatrixrowsspanned, stringvalue, timevalue,
value, valuetype.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: text.P.

4.17.9 [Link]
Requires the following attributes: function, sourcecellrangeaddresses, targetcelladdress.
Allows the following attributes: function, linktosourcedata, sourcecellrangeaddresses,
targetcelladdress, uselabels.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17.10 [Link]
Requires the following attributes: name.
Allows the following attributes: allowemptycell, basecelladdress, condition, displaylist, name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link].

4.17.11 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link].

4.17.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: booleanvalue, contentvalidationname, currency, datevalue,
formula, numbercolumnsrepeated, protect, stringvalue, stylename, timevalue, value, valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], draw.A, [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
draw.G, [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], text.H, [Link], [Link],
[Link], [Link], text.P, [Link], [Link],
[Link], [Link].

4.17.13 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.17.14 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datafield, displaymembermode, enabled, membercount.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.15 [Link]
Requires the following attributes: sourcefieldname.
Allows the following attributes: function, isdatalayoutfield, orientation, selectedpage,
sourcefieldname, usedhierarchy.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link].

4.17.16 [Link]
Requires the following attributes: fieldname, type.
Allows the following attributes: fieldname, membername, membertype, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.17 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.17.18 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.19 [Link]
Requires the following attributes: groupedby, sourcefieldname, step.
Allows the following attributes: dateend, datestart, end, groupedby, sourcefieldname, start, step.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.17.20 [Link]
Requires the following attributes: addemptylines, layoutmode.
Allows the following attributes: addemptylines, layoutmode.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.21 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: showempty.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link],
[Link].

4.17.22 [Link]
Requires the following attributes: name.
Allows the following attributes: display, name, showdetails.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.23 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.17.24 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datafield, order, sortmode.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.25 [Link]
Requires the following attributes: function.
Allows the following attributes: function.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.26 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].
4.17.27 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: applicationdata, buttons, drilldownondoubleclick, grandtotal,
identifycategories, ignoreemptyrows, name, showfilterbutton, targetrangeaddress.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link],
[Link], [Link].

4.17.28 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link].

4.17.29 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: containsheader, displayfilterbuttons, haspersistentdata, isselection,
name, onupdatekeepsize, onupdatekeepstyles, orientation, refreshdelay, targetrangeaddress.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link], [Link], [Link].

4.17.30 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link].

4.17.31 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: databasename, queryname.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17.32 [Link]
Requires the following attributes: databasename, sqlstatement.
Allows the following attributes: databasename, parsesqlstatement, sqlstatement.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17.33 [Link]
Requires the following attributes: databasename, databasetablename.
Allows the following attributes: databasename, databasetablename.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.17.34 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.17.35 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link].

4.17.36 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: acceptancestate, id, multideletionspanned, position,
rejectingchangeid, table, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link].

4.17.37 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: [Link], [Link].

4.17.38 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link].

4.17.39 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: id.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.40 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].
4.17.41 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: execute.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.42 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, messagetype, title.
These elements contain [Link]: [Link].
The following elements occur in [Link]: text.P.

4.17.43 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.44 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.45 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: conditionsource, conditionsourcerangeaddress, displayduplicates,
targetrangeaddress.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link], [Link].

4.17.46 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.17.47 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: casesensitive, datatype, fieldnumber, operator, value.
These elements contain [Link]: [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17.48 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link].
4.17.49 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.50 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.51 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, title.
These elements contain [Link]: [Link].
The following elements occur in [Link]: text.P.

4.17.52 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: cellrangeaddress, containserror, direction, markedinvalid.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.53 [Link]
Requires the following attributes: id, position, type.
Allows the following attributes: acceptancestate, count, id, position, rejectingchangeid, table, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.17.54 [Link]
Requires the following attributes: id, position.
Allows the following attributes: id, position.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.55 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: maximumdifference, status, steps.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.56 [Link]
Requires the following attributes: datacellrangeaddress, labelcellrangeaddress, orientation.
Allows the following attributes: datacellrangeaddress, labelcellrangeaddress, orientation.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.17.57 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link].

4.17.58 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.59 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.60 [Link]
Requires the following attributes: id.
Allows the following attributes: acceptancestate, id, rejectingchangeid.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link].

4.17.61 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: endposition, position, startposition.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.62 [Link]
Requires the following attributes: expression, name.
Allows the following attributes: basecelladdress, expression, name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.63 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link],
[Link].

4.17.64 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: basecelladdress, cellrangeaddress, name, rangeusableas.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.65 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datevaluetype, valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.66 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.67 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.68 [Link]
Requires the following attributes: index, name.
Allows the following attributes: index, name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.69 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: id.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.17.70 [Link]
Requires the following attributes: isactive, scenarioranges.
Allows the following attributes: bordercolor, comment, copyback, copyformulas, copystyles,
displayborder, isactive, protected, scenarioranges.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.71 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link].
4.17.72 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: algorithm, bindstylestocontent, casesensitive, country, language,
targetrangeaddress.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.17.73 [Link]
Requires the following attributes: fieldnumber.
Allows the following attributes: datatype, fieldnumber, order.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.74 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datatype, order.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.75 [Link]
Requires the following attributes: cellrangeaddress.
Allows the following attributes: cellrangeaddress.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.17.76 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: column, endcolumn, endrow, endtable, row, startcolumn, startrow,
starttable, table.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.77 [Link]
Requires the following attributes: name, objectname, sourcename.
Allows the following attributes: name, objectname, password, sourcename, username.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.78 [Link]
Requires the following attributes: fieldnumber, function.
Allows the following attributes: fieldnumber, function.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.79 [Link]
Requires the following attributes: groupbyfieldnumber.
Allows the following attributes: groupbyfieldnumber.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.17.80 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: bindstylestocontent, casesensitive, pagebreaksongroupchange.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link].

4.17.81 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: issubtable, name, print, printranges, protected, protectionkey,
stylename.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link].

4.17.82 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: booleanvalue, contentvalidationname, currency, datevalue,
formula, numbercolumnsrepeated, numbercolumnsspanned, numbermatrixcolumnsspanned,
numbermatrixrowsspanned, numberrowsspanned, protect, stringvalue, stylename, timevalue, value,
valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.H, [Link], [Link], [Link],
[Link], text.P, [Link], [Link], [Link], [Link].

4.17.83 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: defaultcellstylename, numbercolumnsrepeated, stylename,
visibility.
These elements contain [Link]: [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.17.84 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link].
4.17.85 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.17.86 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.17.87 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.17.88 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: defaultcellstylename, numberrowsrepeated, stylename, visibility.
These elements contain [Link]: [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.17.89 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link].

4.17.90 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.17.91 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: actuate, filtername, filteroptions, href, mode, refreshdelay,
tablename, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.92 [Link]
Requires the following attributes: firstrowendcolumn, firstrowstartcolumn, lastrowendcolumn,
lastrowstartcolumn, name.
Allows the following attributes: firstrowendcolumn, firstrowstartcolumn, lastrowendcolumn,
lastrowstartcolumn, name.
These elements contain [Link]: This is a toplevel element.
The following elements occur in [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link].

4.17.93 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: column, endcolumn, endrow, endtable, row, startcolumn, startrow,
starttable, table.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.17.94 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: trackchanges.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link], [Link].

4.18 text module

4.18.1 text.A
Requires the following attributes: href.
Allows the following attributes: actuate, href, name, show, stylename, targetframename, type,
visitedstylename.
These elements contain text.A: text.A, text.H, text.P, [Link], [Link].
The following elements occur in text.A: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], text.A, [Link],
[Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], text.S, [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link].

4.18.2 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.3 [Link]
Requires the following attributes: href.
Allows the following attributes: href, type.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.18.4 [Link]
Requires the following attributes: outlinelevel, stylename.
Allows the following attributes: outlinelevel, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link], [Link].

4.18.5 [Link]
Requires the following attributes: stringvalue.
Allows the following attributes: key1, key1phonetic, key2, key2phonetic, mainentry, stringvalue,
stringvaluephonetic.
These elements contain [Link]: text.A, text.H, text.P, [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.18.6 [Link]
Requires the following attributes: id.
Allows the following attributes: id.
These elements contain [Link]: text.A, text.H, text.P, [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.18.7 [Link]
Requires the following attributes: id.
Allows the following attributes: id, key1, key1phonetic, key2, key2phonetic, mainentry,
stringvaluephonetic.
These elements contain [Link]: text.A, text.H, text.P, [Link],
[Link].
The following elements occur in [Link]: No element is allowed.
4.18.8 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: alphabeticalseparators, capitalizeentries, combineentries,
combineentrieswithdash, combineentrieswithpp, commaseparated, country, ignorecase, indexscope,
language, mainentrystylename, relativetabstopposition, sortalgorithm, usekeysasentries.
These elements contain [Link]: [Link].
The following elements occur in [Link]:
[Link], [Link].

4.18.9 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.10 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.11 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.18.12 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: country, language, numberedentries, prefix, sortalgorithm,
sortbyposition, suffix.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.18.13 [Link]
Requires the following attributes: bibliographytype, stylename.
Allows the following attributes: bibliographytype, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link].

4.18.14 [Link]
Requires the following attributes: bibliographytype.
Allows the following attributes: bibliographytype, issn.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.18.15 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.16 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.17 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.18 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: referenceformat, refname.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.19 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.20 [Link]
Requires the following attributes: changeid.
Allows the following attributes: changeid.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.A, [Link],
text.H, [Link], [Link], [Link], text.P, [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.21 [Link]
Requires the following attributes: changeid.
Allows the following attributes: changeid.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.A, [Link],
text.H, [Link], [Link], [Link], text.P, [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.18.22 [Link]
Requires the following attributes: changeid.
Allows the following attributes: changeid.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.A, [Link],
text.H, [Link], [Link], [Link], text.P, [Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.23 [Link]
Requires the following attributes: id.
Allows the following attributes: id.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.18.24 [Link]
Requires the following attributes: display, outlinelevel.
Allows the following attributes: display, outlinelevel.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.25 [Link]
Requires the following attributes: condition, stringvalueiffalse, stringvalueiftrue.
Allows the following attributes: condition, currentvalue, stringvalueiffalse, stringvalueiftrue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.26 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, datevalue, fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.27 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, fixed, timevalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.28 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.29 [Link]
Requires the following attributes: columnname, tablename.
Allows the following attributes: columnname, databasename, datastylename, tablename, tabletype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.30 [Link]
Requires the following attributes: tablename.
Allows the following attributes: databasename, tablename, tabletype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.31 [Link]
Requires the following attributes: tablename.
Allows the following attributes: condition, databasename, tablename, tabletype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.32 [Link]
Requires the following attributes: tablename.
Allows the following attributes: databasename, numformat, numlettersync, tablename, tabletype,
value.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.33 [Link]
Requires the following attributes: tablename.
Allows the following attributes: condition, databasename, rownumber, tablename, tabletype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.34 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, dateadjust, datevalue, fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.35 [Link]
Requires the following attributes: connectionname.
Allows the following attributes: connectionname.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.36 [Link]
Requires the following attributes: ddeapplication, ddeitem, ddetopic, name.
Allows the following attributes: automaticupdate, ddeapplication, ddeitem, ddetopic, name.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.37 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: [Link].

4.18.38 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.H, [Link],
[Link], [Link], [Link], text.P, [Link], [Link],
[Link], [Link].

4.18.39 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.40 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.41 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, duration, fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.42 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.43 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: booleanvalue, currency, datastylename, datevalue, display,
formula, stringvalue, timevalue, value, valuetype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.18.44 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.45 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.18.46 text.H
Requires the following attributes: No attribute is required.
Allows the following attributes: classnames, condstylename, id, islistheader, outlinelevel,
restartnumbering, startvalue, stylename.
These elements contain text.H: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link].
The following elements occur in text.H: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.S, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link].

4.18.47 [Link]
Requires the following attributes: condition.
Allows the following attributes: condition, ishidden.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.18.48 [Link]
Requires the following attributes: condition, stringvalue.
Allows the following attributes: condition, ishidden, stringvalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.49 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.50 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link].

4.18.51 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: captionsequenceformat, captionsequencename, indexscope,
relativetabstopposition, usecaption.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.52 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], text.H, [Link], [Link],
[Link], [Link], [Link], text.P, [Link], [Link],
[Link], [Link].

4.18.53 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: bibliographydatafield, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.18.54 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display, stylename.
These elements contain [Link]: [Link],
[Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.55 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.56 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.57 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link],
[Link], [Link],
[Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.58 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link],
[Link], [Link],
[Link], [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.18.59 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: leaderchar, position, stylename, type.
These elements contain [Link]: [Link],
[Link], [Link],
[Link], [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.18.60 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link],
[Link], [Link],
[Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.61 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.62 [Link]
Requires the following attributes: outlinelevel.
Allows the following attributes: outlinelevel.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.63 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], text.H, [Link], [Link],
[Link], [Link], [Link], text.P, [Link], [Link],
[Link], [Link].

4.18.64 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link],
[Link], [Link], [Link],
[Link], [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.65 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.66 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].
4.18.67 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.68 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.69 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: countemptylines, countintextboxes, increment, numberlines,
numberposition, numformat, numlettersync, offset, restartonpage, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.18.70 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: increment.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.71 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: continuenumbering, stylename.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link].
The following elements occur in [Link]: [Link], [Link].

4.18.72 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: text.H, [Link], [Link], text.P.

4.18.73 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: startvalue.
These elements contain [Link]: [Link].
The following elements occur in [Link]: text.H, [Link], [Link], text.P.
4.18.74 [Link]
Requires the following attributes: bulletchar, level.
Allows the following attributes: bulletchar, bulletrelativesize, level, numprefix, numsuffix,
stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.75 [Link]
Requires the following attributes: level.
Allows the following attributes: actuate, href, level, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.76 [Link]
Requires the following attributes: level.
Allows the following attributes: displaylevels, level, numformat, numlettersync, numprefix,
numsuffix, startvalue, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.77 [Link]
Requires the following attributes: name.
Allows the following attributes: consecutivenumbering, displayname, name.
These elements contain [Link]: [Link], [Link],
[Link].
The following elements occur in [Link]: [Link], [Link],
[Link].

4.18.78 [Link]
Requires the following attributes: kind.
Allows the following attributes: kind.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.79 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, datevalue, fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.80 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, fixed, timevalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.18.81 [Link]
Requires the following attributes: noteclass.
Allows the following attributes: id, noteclass.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.18.82 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], text.H, [Link], [Link],
[Link], [Link], text.P, [Link], [Link],
[Link], [Link].

4.18.83 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: label.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.84 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.85 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.86 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: noteclass, referenceformat, refname.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.87 [Link]
Requires the following attributes: noteclass.
Allows the following attributes: citationbodystylename, citationstylename, defaultstylename,
footnotesposition, masterpagename, noteclass, numformat, numlettersync, numprefix, numsuffix,
startnumberingat, startvalue.
These elements contain [Link]: [Link], [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.88 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: text.H, [Link], [Link],
[Link].
The following elements occur in [Link]: No element is allowed.

4.18.89 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: continuenumbering, level, startvalue, stylename.
These elements contain [Link]: [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link].
The following elements occur in [Link]: text.H, [Link], text.P.

4.18.90 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: numformat, numlettersync.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.91 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.18.92 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link].

4.18.93 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: indexscope, relativetabstopposition, usechartobjects,
usedrawobjects, usemathobjects, useotherobjects, usespreadsheetobjects.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.94 [Link]
Requires the following attributes: level.
Allows the following attributes: displaylevels, level, numformat, numlettersync, numprefix,
numsuffix, startvalue, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.95 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.18.96 text.P
Requires the following attributes: No attribute is required.
Allows the following attributes: classnames, condstylename, id, stylename.
These elements contain text.P: [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link].
The following elements occur in text.P: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.S, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link].

4.18.97 [Link]
Requires the following attributes: masterpagename.
Allows the following attributes: masterpagename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.
4.18.98 [Link]
Requires the following attributes: selectpage.
Allows the following attributes: selectpage, stringvalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.99 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed, numformat, numlettersync, pageadjust, selectpage.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.100 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.18.101 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: numformat, numlettersync.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.102 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: active, pageadjust.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.103 [Link]
Requires the following attributes: placeholdertype.
Allows the following attributes: description, placeholdertype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.104 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, datevalue, fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.105 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, fixed, timevalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.18.106 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.107 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.108 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.109 [Link]
Requires the following attributes: name.
Allows the following attributes: name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.110 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.18.111 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.S, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link].

4.18.112 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.113 text.S
Requires the following attributes: No attribute is required.
Allows the following attributes: c.
These elements contain text.S: text.A, text.H, text.P, [Link], [Link].
The following elements occur in text.S: No element is allowed.

4.18.114 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: href, language, type.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.115 [Link]
Requires the following attributes: name.
Allows the following attributes: condition, display, name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.H, [Link],
[Link], [Link], [Link], text.P, [Link], [Link],
[Link], [Link], [Link].

4.18.116 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: filtername, href, sectionname, show, type.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.117 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.118 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.119 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.120 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.121 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.122 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.123 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.124 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.125 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.126 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.127 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.128 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.129 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.130 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.131 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.132 [Link]
Requires the following attributes: name.
Allows the following attributes: formula, name, numformat, numlettersync, refname.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.133 [Link]
Requires the following attributes: displayoutlinelevel, name.
Allows the following attributes: displayoutlinelevel, name, separationcharacter.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.134 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.135 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: referenceformat, refname.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.136 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.137 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: key, sortascending.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.138 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: classnames, stylename.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: [Link], draw.A, [Link], [Link],
[Link], [Link], [Link], [Link], [Link], draw.G,
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], text.A, [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], text.S, [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link],
[Link], [Link], [Link].

4.18.139 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.140 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: tabref.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.141 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, display, formula.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.142 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.18.143 [Link]
Requires the following attributes: stylename.
Allows the following attributes: stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link].

4.18.144 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: captionsequenceformat, captionsequencename, indexscope,
relativetabstopposition, usecaption.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link].

4.18.145 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.18.146 [Link]
Requires the following attributes: outlinelevel, stylename.
Allows the following attributes: outlinelevel, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link],
[Link], [Link], [Link].

4.18.147 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: indexscope, outlinelevel, relativetabstopposition, useindexmarks,
useindexsourcestyles, useoutlinelevel.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link].

4.18.148 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: display.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.149 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: description.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.150 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, fixed, timeadjust, timevalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.151 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: fixed.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.152 [Link]
Requires the following attributes: stringvalue.
Allows the following attributes: outlinelevel, stringvalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.153 [Link]
Requires the following attributes: id.
Allows the following attributes: id.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.154 [Link]
Requires the following attributes: id.
Allows the following attributes: id, outlinelevel.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.155 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: trackchanges.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link].

4.18.156 [Link]
Requires the following attributes: name.
Allows the following attributes: booleanvalue, datastylename, datevalue, fixed, name, stringvalue,
timevalue, value.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.157 [Link]
Requires the following attributes: name.
Allows the following attributes: booleanvalue, currency, datevalue, formula, name, stringvalue,
timevalue, value, valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.158 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.159 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, display, name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.
4.18.160 [Link]
Requires the following attributes: name.
Allows the following attributes: datastylename, description, name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.161 [Link]
Requires the following attributes: name.
Allows the following attributes: name, protected, protectionkey, stylename.
These elements contain [Link]: [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link],
[Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link], [Link].

4.18.162 [Link]
Requires the following attributes: outlinelevel, stylename.
Allows the following attributes: outlinelevel, stylename.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link], [Link], [Link].

4.18.163 [Link]
Requires the following attributes: indexname, stringvalue.
Allows the following attributes: indexname, outlinelevel, stringvalue.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.164 [Link]
Requires the following attributes: id.
Allows the following attributes: id, outlinelevel.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.165 [Link]
Requires the following attributes: id, indexname.
Allows the following attributes: id, indexname, outlinelevel.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.166 [Link]
Requires the following attributes: indexname.
Allows the following attributes: copyoutlinelevels, indexname, indexscope, relativetabstopposition,
usefloatingframes, usegraphics, useindexmarks, useobjects, usetables.
These elements contain [Link]: [Link].
The following elements occur in [Link]: [Link],
[Link], [Link].
4.18.167 [Link]
Requires the following attributes: name, valuetype.
Allows the following attributes: name, valuetype.
These elements contain [Link]: [Link].
The following elements occur in [Link]: No element is allowed.

4.18.168 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link], [Link], [Link],
[Link], [Link], [Link], [Link], [Link], [Link].
The following elements occur in [Link]: [Link].

4.18.169 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: datastylename, display, name.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.170 [Link]
Requires the following attributes: name, valuetype.
Allows the following attributes: datastylename, description, display, name, valuetype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.18.171 [Link]
Requires the following attributes: name.
Allows the following attributes: booleanvalue, currency, datastylename, datevalue, display,
formula, name, stringvalue, timevalue, value, valuetype.
These elements contain [Link]: text.A, text.H, text.P, [Link], [Link].
The following elements occur in [Link]: No element is allowed.

4.19 xforms module

4.19.1 [Link]
Requires the following attributes: No attribute is required.
Allows the following attributes: No attribute is allowed.
These elements contain [Link]: [Link].
The following elements occur in [Link]: Any element is allowed.

5 Examples

5.1 Creating a table in OpenDocument text


This example reads the UNIX /etc/passwd file and creates a table with seven columns. Unlike in
HTML tables, ODF tables must have declared column widths. For those who don't know
/etc/passwd, it is a wellknown text file in Linux with seven colon-separated values.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from [Link] import OpenDocumentText
from [Link] import Style, TextProperties, ParagraphProperties
from [Link] import TableColumnProperties
from [Link] import P
from [Link] import Table, TableColumn, TableRow, TableCell

doc = OpenDocumentText()
# Create a style for the table content. One we can modify
# later in the word processor.
tablecontents = Style(name="Table Contents", family="paragraph")
[Link](ParagraphProperties(numberlines="false",
linenumber="0"))
[Link](tablecontents)

# Create automatic styles for the column widths.


# We want two different widths, one in inches, the other one in metric.
# ODF Standard section 15.9.1
widthshort = Style(name="Wshort", family="table-column")
[Link](TableColumnProperties(columnwidth="1.7cm"))
[Link](widthshort)

widthwide = Style(name="Wwide", family="table-column")


[Link](TableColumnProperties(columnwidth="1.5in"))
[Link](widthwide)

# Start the table, and describe the columns


table = Table()
[Link](TableColumn(numbercolumnsrepeated=4,stylename=widthshort))
[Link](TableColumn(numbercolumnsrepeated=3,stylename=widthwide))

f = open('/etc/passwd')
for line in f:
rec = [Link]().split(":")
tr = TableRow()
[Link](tr)
for val in rec:
tc = TableCell()
[Link](tc)
p = P(stylename=tablecontents,text=val)
[Link](p)

[Link](table)
[Link]("[Link]")

5.2 Creating the table as a spreadsheet


The spreadsheet version is almost identical. I have highlighted with italics where the differences
are. But you can definitely simplify it further. E.g. you don't need the Table Contents style in a
spreadsheet.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from [Link] import OpenDocumentSpreadsheet
from [Link] import Style, TextProperties, ParagraphProperties
from [Link] import TableColumnProperties
from [Link] import P
from [Link] import Table, TableColumn, TableRow, TableCell

doc = OpenDocumentSpreadsheet()
# Create a style for the table content. One we can modify
# later in the word processor.
tablecontents = Style(name="Table Contents", family="paragraph")
[Link](ParagraphProperties(numberlines="false",
linenumber="0"))
[Link](tablecontents)

# Create automatic styles for the column widths.


# We want two different widths, one in inches, the other one in metric.
# ODF Standard section 15.9.1
widthshort = Style(name="Wshort", family="table-column")
[Link](TableColumnProperties(columnwidth="1.7cm"))
[Link](widthshort)

widthwide = Style(name="Wwide", family="table-column")


[Link](TableColumnProperties(columnwidth="1.5in"))
[Link](widthwide)

# Start the table, and describe the columns


table = Table(name="Password")
[Link](TableColumn(numbercolumnsrepeated=4,stylename=widthshort))
[Link](TableColumn(numbercolumnsrepeated=3,stylename=widthwide))

f = open('/etc/passwd')
for line in f:
rec = [Link]().split(":")
tr = TableRow()
[Link](tr)
for val in rec:
tc = TableCell()
[Link](tc)
p = P(stylename=tablecontents,text=val)
[Link](p)

[Link](table)
[Link]("[Link]")

5.3 Photo album


This example creates a simple photo album with an automatic slide transition after five seconds.
Every drawing page must have a master page assigned to it. We create a simple placeholder that
can't be used to adjust all slides at once. If your pictures aren't of the dimensions 4x3, they will look
distorted. I'll leave that as an exercise left for the reader.
from [Link] import OpenDocumentPresentation
from [Link] import Style, MasterPage, PageLayout, PageLayoutProperties, \
TextProperties, GraphicProperties, ParagraphProperties, DrawingPageProperties
from [Link] import P
from [Link] import Page, Frame, TextBox, Image

doc=OpenDocumentPresentation()

# We must describe the dimensions of the page


pagelayout = PageLayout(name="MyLayout")
[Link](pagelayout)
[Link](PageLayoutProperties(margin="0cm", pagewidth="28cm",
pageheight="21cm", printorientation="landscape"))

# Style for the title frame of the page


# We set a centered 34pt font with yellowish background
titlestyle = Style(name="MyMaster-title", family="presentation")
[Link](ParagraphProperties(textalign="center"))
[Link](TextProperties(fontsize="34pt"))
[Link](GraphicProperties(fillcolor="#ffff99"))
[Link](titlestyle)

# Create automatic transition – MUST be named dp1


dpstyle = Style(name="dp1", family="drawing-page")
[Link](DrawingPageProperties(transitiontype="automatic",
transitionstyle="move-from-top", duration="PT05S"))
[Link](dpstyle)

# Every drawing page must have a master page assigned to it.


masterpage = MasterPage(name="MyMaster", pagelayoutname="MyLayout")
[Link](masterpage)

# Slides
for picture in [('[Link]','Forum Romanum'),('[Link]','Coloseum')]:
page = Page(stylename="dp1", masterpagename="MyMaster")
[Link](page)
titleframe = Frame(stylename="MyMaster-title", width="25cm", height="2cm",
x="1.5cm", y="0.5cm")
[Link](titleframe)
textbox = TextBox()
[Link](textbox)
[Link](P(text=picture[1]))

# Photo set to 25x18.75 cm.


photoframe = Frame(stylename="MyMaster-photo", width="25cm",
height="18.75cm", x="1.5cm", y="2.5cm")
[Link](photoframe)
href = [Link](picture[0])
[Link](Image(href=href))

[Link]("trip-to-rome", True)

You might also like