dg-axlsx 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.yardopts +9 -0
- data/.yardopts_guide +19 -0
- data/CHANGELOG.md +239 -0
- data/LICENSE +22 -0
- data/README.md +259 -0
- data/Rakefile +30 -0
- data/examples/2010_comments.rb +17 -0
- data/examples/anchor_swapping.rb +28 -0
- data/examples/auto_filter.rb +25 -0
- data/examples/basic_charts.rb +58 -0
- data/examples/chart_colors.rb +88 -0
- data/examples/colored_links.rb +59 -0
- data/examples/conditional_formatting/example_conditional_formatting.rb +89 -0
- data/examples/conditional_formatting/getting_barred.rb +37 -0
- data/examples/conditional_formatting/hitting_the_high_notes.rb +37 -0
- data/examples/conditional_formatting/scaled_colors.rb +39 -0
- data/examples/conditional_formatting/stop_and_go.rb +37 -0
- data/examples/data_validation.rb +50 -0
- data/examples/example.rb +875 -0
- data/examples/extractive.rb +45 -0
- data/examples/image1.jpeg +0 -0
- data/examples/ios_preview.rb +14 -0
- data/examples/merge_cells.rb +17 -0
- data/examples/no_grid_with_borders.rb +18 -0
- data/examples/page_setup.rb +11 -0
- data/examples/pivot_table.rb +39 -0
- data/examples/pivot_test.rb +63 -0
- data/examples/sheet_protection.rb +10 -0
- data/examples/skydrive/real_example.rb +63 -0
- data/examples/split.rb +16 -0
- data/examples/styles.rb +66 -0
- data/examples/underline.rb +13 -0
- data/examples/wrap_text.rb +21 -0
- data/lib/axlsx.rb +168 -0
- data/lib/axlsx/content_type/abstract_content_type.rb +32 -0
- data/lib/axlsx/content_type/content_type.rb +26 -0
- data/lib/axlsx/content_type/default.rb +25 -0
- data/lib/axlsx/content_type/override.rb +25 -0
- data/lib/axlsx/doc_props/app.rb +235 -0
- data/lib/axlsx/doc_props/core.rb +39 -0
- data/lib/axlsx/drawing/ax_data_source.rb +26 -0
- data/lib/axlsx/drawing/axes.rb +61 -0
- data/lib/axlsx/drawing/axis.rb +190 -0
- data/lib/axlsx/drawing/bar_3D_chart.rb +151 -0
- data/lib/axlsx/drawing/bar_series.rb +82 -0
- data/lib/axlsx/drawing/bubble_chart.rb +59 -0
- data/lib/axlsx/drawing/bubble_series.rb +63 -0
- data/lib/axlsx/drawing/cat_axis.rb +85 -0
- data/lib/axlsx/drawing/chart.rb +269 -0
- data/lib/axlsx/drawing/d_lbls.rb +90 -0
- data/lib/axlsx/drawing/drawing.rb +164 -0
- data/lib/axlsx/drawing/graphic_frame.rb +54 -0
- data/lib/axlsx/drawing/hyperlink.rb +100 -0
- data/lib/axlsx/drawing/line_3D_chart.rb +68 -0
- data/lib/axlsx/drawing/line_chart.rb +99 -0
- data/lib/axlsx/drawing/line_series.rb +110 -0
- data/lib/axlsx/drawing/marker.rb +84 -0
- data/lib/axlsx/drawing/num_data.rb +52 -0
- data/lib/axlsx/drawing/num_data_source.rb +62 -0
- data/lib/axlsx/drawing/num_val.rb +32 -0
- data/lib/axlsx/drawing/one_cell_anchor.rb +98 -0
- data/lib/axlsx/drawing/pic.rb +213 -0
- data/lib/axlsx/drawing/picture_locking.rb +42 -0
- data/lib/axlsx/drawing/pie_3D_chart.rb +47 -0
- data/lib/axlsx/drawing/pie_series.rb +74 -0
- data/lib/axlsx/drawing/scaling.rb +60 -0
- data/lib/axlsx/drawing/scatter_chart.rb +74 -0
- data/lib/axlsx/drawing/scatter_series.rb +84 -0
- data/lib/axlsx/drawing/ser_axis.rb +45 -0
- data/lib/axlsx/drawing/series.rb +69 -0
- data/lib/axlsx/drawing/series_title.rb +23 -0
- data/lib/axlsx/drawing/str_data.rb +42 -0
- data/lib/axlsx/drawing/str_val.rb +32 -0
- data/lib/axlsx/drawing/title.rb +78 -0
- data/lib/axlsx/drawing/two_cell_anchor.rb +92 -0
- data/lib/axlsx/drawing/val_axis.rb +37 -0
- data/lib/axlsx/drawing/view_3D.rb +115 -0
- data/lib/axlsx/drawing/vml_drawing.rb +42 -0
- data/lib/axlsx/drawing/vml_shape.rb +66 -0
- data/lib/axlsx/package.rb +363 -0
- data/lib/axlsx/rels/relationship.rb +129 -0
- data/lib/axlsx/rels/relationships.rb +29 -0
- data/lib/axlsx/stylesheet/border.rb +71 -0
- data/lib/axlsx/stylesheet/border_pr.rb +71 -0
- data/lib/axlsx/stylesheet/cell_alignment.rb +132 -0
- data/lib/axlsx/stylesheet/cell_protection.rb +41 -0
- data/lib/axlsx/stylesheet/cell_style.rb +72 -0
- data/lib/axlsx/stylesheet/color.rb +76 -0
- data/lib/axlsx/stylesheet/dxf.rb +79 -0
- data/lib/axlsx/stylesheet/fill.rb +35 -0
- data/lib/axlsx/stylesheet/font.rb +148 -0
- data/lib/axlsx/stylesheet/gradient_fill.rb +103 -0
- data/lib/axlsx/stylesheet/gradient_stop.rb +37 -0
- data/lib/axlsx/stylesheet/num_fmt.rb +77 -0
- data/lib/axlsx/stylesheet/pattern_fill.rb +73 -0
- data/lib/axlsx/stylesheet/styles.rb +420 -0
- data/lib/axlsx/stylesheet/table_style.rb +54 -0
- data/lib/axlsx/stylesheet/table_style_element.rb +77 -0
- data/lib/axlsx/stylesheet/table_styles.rb +46 -0
- data/lib/axlsx/stylesheet/xf.rb +147 -0
- data/lib/axlsx/util/accessors.rb +64 -0
- data/lib/axlsx/util/constants.rb +397 -0
- data/lib/axlsx/util/mime_type_utils.rb +11 -0
- data/lib/axlsx/util/options_parser.rb +16 -0
- data/lib/axlsx/util/parser.rb +44 -0
- data/lib/axlsx/util/serialized_attributes.rb +89 -0
- data/lib/axlsx/util/simple_typed_list.rb +179 -0
- data/lib/axlsx/util/storage.rb +146 -0
- data/lib/axlsx/util/string.rb +7 -0
- data/lib/axlsx/util/validators.rb +311 -0
- data/lib/axlsx/version.rb +5 -0
- data/lib/axlsx/workbook/defined_name.rb +128 -0
- data/lib/axlsx/workbook/defined_names.rb +21 -0
- data/lib/axlsx/workbook/shared_strings_table.rb +77 -0
- data/lib/axlsx/workbook/workbook.rb +361 -0
- data/lib/axlsx/workbook/workbook_view.rb +78 -0
- data/lib/axlsx/workbook/workbook_views.rb +22 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb +77 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/filter_column.rb +94 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/filters.rb +244 -0
- data/lib/axlsx/workbook/worksheet/break.rb +35 -0
- data/lib/axlsx/workbook/worksheet/cell.rb +475 -0
- data/lib/axlsx/workbook/worksheet/cell_serializer.rb +154 -0
- data/lib/axlsx/workbook/worksheet/cfvo.rb +60 -0
- data/lib/axlsx/workbook/worksheet/cfvos.rb +15 -0
- data/lib/axlsx/workbook/worksheet/col.rb +141 -0
- data/lib/axlsx/workbook/worksheet/col_breaks.rb +35 -0
- data/lib/axlsx/workbook/worksheet/color_scale.rb +110 -0
- data/lib/axlsx/workbook/worksheet/cols.rb +20 -0
- data/lib/axlsx/workbook/worksheet/comment.rb +91 -0
- data/lib/axlsx/workbook/worksheet/comments.rb +82 -0
- data/lib/axlsx/workbook/worksheet/conditional_formatting.rb +82 -0
- data/lib/axlsx/workbook/worksheet/conditional_formatting_rule.rb +220 -0
- data/lib/axlsx/workbook/worksheet/conditional_formattings.rb +25 -0
- data/lib/axlsx/workbook/worksheet/data_bar.rb +129 -0
- data/lib/axlsx/workbook/worksheet/data_validation.rb +246 -0
- data/lib/axlsx/workbook/worksheet/data_validations.rb +28 -0
- data/lib/axlsx/workbook/worksheet/date_time_converter.rb +30 -0
- data/lib/axlsx/workbook/worksheet/dimension.rb +64 -0
- data/lib/axlsx/workbook/worksheet/header_footer.rb +52 -0
- data/lib/axlsx/workbook/worksheet/icon_set.rb +81 -0
- data/lib/axlsx/workbook/worksheet/merged_cells.rb +35 -0
- data/lib/axlsx/workbook/worksheet/page_margins.rb +97 -0
- data/lib/axlsx/workbook/worksheet/page_set_up_pr.rb +44 -0
- data/lib/axlsx/workbook/worksheet/page_setup.rb +240 -0
- data/lib/axlsx/workbook/worksheet/pane.rb +139 -0
- data/lib/axlsx/workbook/worksheet/pivot_table.rb +266 -0
- data/lib/axlsx/workbook/worksheet/pivot_table_cache_definition.rb +66 -0
- data/lib/axlsx/workbook/worksheet/pivot_tables.rb +24 -0
- data/lib/axlsx/workbook/worksheet/print_options.rb +39 -0
- data/lib/axlsx/workbook/worksheet/protected_range.rb +47 -0
- data/lib/axlsx/workbook/worksheet/protected_ranges.rb +34 -0
- data/lib/axlsx/workbook/worksheet/rich_text.rb +35 -0
- data/lib/axlsx/workbook/worksheet/rich_text_run.rb +254 -0
- data/lib/axlsx/workbook/worksheet/row.rb +154 -0
- data/lib/axlsx/workbook/worksheet/row_breaks.rb +33 -0
- data/lib/axlsx/workbook/worksheet/selection.rb +101 -0
- data/lib/axlsx/workbook/worksheet/sheet_calc_pr.rb +29 -0
- data/lib/axlsx/workbook/worksheet/sheet_data.rb +27 -0
- data/lib/axlsx/workbook/worksheet/sheet_format_pr.rb +60 -0
- data/lib/axlsx/workbook/worksheet/sheet_pr.rb +79 -0
- data/lib/axlsx/workbook/worksheet/sheet_protection.rb +118 -0
- data/lib/axlsx/workbook/worksheet/sheet_view.rb +213 -0
- data/lib/axlsx/workbook/worksheet/table.rb +102 -0
- data/lib/axlsx/workbook/worksheet/table_style_info.rb +49 -0
- data/lib/axlsx/workbook/worksheet/tables.rb +31 -0
- data/lib/axlsx/workbook/worksheet/worksheet.rb +798 -0
- data/lib/axlsx/workbook/worksheet/worksheet_comments.rb +58 -0
- data/lib/axlsx/workbook/worksheet/worksheet_drawing.rb +58 -0
- data/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb +74 -0
- data/lib/axlsx/workbook/worksheet/worksheet_hyperlinks.rb +38 -0
- data/lib/dg-axlsx.rb +1 -0
- data/lib/schema/dc.xsd +118 -0
- data/lib/schema/dcmitype.xsd +52 -0
- data/lib/schema/dcterms.xsd +331 -0
- data/lib/schema/dml-chart.xsd +1499 -0
- data/lib/schema/dml-chartDrawing.xsd +146 -0
- data/lib/schema/dml-compatibility.xsd +14 -0
- data/lib/schema/dml-diagram.xsd +1091 -0
- data/lib/schema/dml-lockedCanvas.xsd +11 -0
- data/lib/schema/dml-main.xsd +3048 -0
- data/lib/schema/dml-picture.xsd +23 -0
- data/lib/schema/dml-spreadsheetDrawing.xsd +185 -0
- data/lib/schema/dml-wordprocessingDrawing.xsd +185 -0
- data/lib/schema/opc-contentTypes.xsd +42 -0
- data/lib/schema/opc-coreProperties.xsd +54 -0
- data/lib/schema/opc-digSig.xsd +49 -0
- data/lib/schema/opc-relationships.xsd +33 -0
- data/lib/schema/pml.xsd +1676 -0
- data/lib/schema/shared-additionalCharacteristics.xsd +28 -0
- data/lib/schema/shared-bibliography.xsd +144 -0
- data/lib/schema/shared-commonSimpleTypes.xsd +166 -0
- data/lib/schema/shared-customXmlDataProperties.xsd +25 -0
- data/lib/schema/shared-customXmlSchemaProperties.xsd +18 -0
- data/lib/schema/shared-documentPropertiesCustom.xsd +59 -0
- data/lib/schema/shared-documentPropertiesExtended.xsd +56 -0
- data/lib/schema/shared-documentPropertiesVariantTypes.xsd +195 -0
- data/lib/schema/shared-math.xsd +582 -0
- data/lib/schema/shared-relationshipReference.xsd +25 -0
- data/lib/schema/sml.xsd +4434 -0
- data/lib/schema/vml-main.xsd +569 -0
- data/lib/schema/vml-officeDrawing.xsd +509 -0
- data/lib/schema/vml-presentationDrawing.xsd +12 -0
- data/lib/schema/vml-spreadsheetDrawing.xsd +108 -0
- data/lib/schema/vml-wordprocessingDrawing.xsd +96 -0
- data/lib/schema/wml.xsd +3644 -0
- data/lib/schema/xml.xsd +116 -0
- data/test/benchmark.rb +72 -0
- data/test/content_type/tc_content_type.rb +76 -0
- data/test/content_type/tc_default.rb +16 -0
- data/test/content_type/tc_override.rb +14 -0
- data/test/doc_props/tc_app.rb +43 -0
- data/test/doc_props/tc_core.rb +42 -0
- data/test/drawing/tc_axes.rb +8 -0
- data/test/drawing/tc_axis.rb +112 -0
- data/test/drawing/tc_bar_3D_chart.rb +71 -0
- data/test/drawing/tc_bar_series.rb +37 -0
- data/test/drawing/tc_bubble_chart.rb +44 -0
- data/test/drawing/tc_bubble_series.rb +21 -0
- data/test/drawing/tc_cat_axis.rb +31 -0
- data/test/drawing/tc_cat_axis_data.rb +27 -0
- data/test/drawing/tc_chart.rb +110 -0
- data/test/drawing/tc_d_lbls.rb +57 -0
- data/test/drawing/tc_data_source.rb +23 -0
- data/test/drawing/tc_drawing.rb +80 -0
- data/test/drawing/tc_graphic_frame.rb +27 -0
- data/test/drawing/tc_hyperlink.rb +64 -0
- data/test/drawing/tc_line_3d_chart.rb +47 -0
- data/test/drawing/tc_line_chart.rb +39 -0
- data/test/drawing/tc_line_series.rb +71 -0
- data/test/drawing/tc_marker.rb +44 -0
- data/test/drawing/tc_named_axis_data.rb +27 -0
- data/test/drawing/tc_num_data.rb +31 -0
- data/test/drawing/tc_num_val.rb +29 -0
- data/test/drawing/tc_one_cell_anchor.rb +66 -0
- data/test/drawing/tc_pic.rb +106 -0
- data/test/drawing/tc_picture_locking.rb +72 -0
- data/test/drawing/tc_pie_3D_chart.rb +28 -0
- data/test/drawing/tc_pie_series.rb +32 -0
- data/test/drawing/tc_scaling.rb +36 -0
- data/test/drawing/tc_scatter_chart.rb +48 -0
- data/test/drawing/tc_scatter_series.rb +45 -0
- data/test/drawing/tc_ser_axis.rb +31 -0
- data/test/drawing/tc_series.rb +23 -0
- data/test/drawing/tc_series_title.rb +33 -0
- data/test/drawing/tc_str_data.rb +18 -0
- data/test/drawing/tc_str_val.rb +21 -0
- data/test/drawing/tc_title.rb +49 -0
- data/test/drawing/tc_two_cell_anchor.rb +36 -0
- data/test/drawing/tc_val_axis.rb +24 -0
- data/test/drawing/tc_view_3D.rb +54 -0
- data/test/drawing/tc_vml_drawing.rb +25 -0
- data/test/drawing/tc_vml_shape.rb +106 -0
- data/test/profile.rb +24 -0
- data/test/rels/tc_relationship.rb +44 -0
- data/test/rels/tc_relationships.rb +37 -0
- data/test/stylesheet/tc_border.rb +37 -0
- data/test/stylesheet/tc_border_pr.rb +32 -0
- data/test/stylesheet/tc_cell_alignment.rb +81 -0
- data/test/stylesheet/tc_cell_protection.rb +29 -0
- data/test/stylesheet/tc_cell_style.rb +57 -0
- data/test/stylesheet/tc_color.rb +43 -0
- data/test/stylesheet/tc_dxf.rb +81 -0
- data/test/stylesheet/tc_fill.rb +18 -0
- data/test/stylesheet/tc_font.rb +121 -0
- data/test/stylesheet/tc_gradient_fill.rb +72 -0
- data/test/stylesheet/tc_gradient_stop.rb +31 -0
- data/test/stylesheet/tc_num_fmt.rb +30 -0
- data/test/stylesheet/tc_pattern_fill.rb +43 -0
- data/test/stylesheet/tc_styles.rb +235 -0
- data/test/stylesheet/tc_table_style.rb +44 -0
- data/test/stylesheet/tc_table_style_element.rb +45 -0
- data/test/stylesheet/tc_table_styles.rb +29 -0
- data/test/stylesheet/tc_xf.rb +120 -0
- data/test/tc_axlsx.rb +72 -0
- data/test/tc_helper.rb +10 -0
- data/test/tc_package.rb +233 -0
- data/test/util/tc_mime_type_utils.rb +13 -0
- data/test/util/tc_serialized_attributes.rb +19 -0
- data/test/util/tc_simple_typed_list.rb +77 -0
- data/test/util/tc_validators.rb +210 -0
- data/test/workbook/tc_defined_name.rb +49 -0
- data/test/workbook/tc_shared_strings_table.rb +58 -0
- data/test/workbook/tc_workbook.rb +139 -0
- data/test/workbook/tc_workbook_view.rb +50 -0
- data/test/workbook/worksheet/auto_filter/tc_auto_filter.rb +38 -0
- data/test/workbook/worksheet/auto_filter/tc_filter_column.rb +76 -0
- data/test/workbook/worksheet/auto_filter/tc_filters.rb +50 -0
- data/test/workbook/worksheet/tc_break.rb +49 -0
- data/test/workbook/worksheet/tc_cell.rb +358 -0
- data/test/workbook/worksheet/tc_cfvo.rb +31 -0
- data/test/workbook/worksheet/tc_col.rb +78 -0
- data/test/workbook/worksheet/tc_color_scale.rb +58 -0
- data/test/workbook/worksheet/tc_comment.rb +72 -0
- data/test/workbook/worksheet/tc_comments.rb +57 -0
- data/test/workbook/worksheet/tc_conditional_formatting.rb +224 -0
- data/test/workbook/worksheet/tc_data_bar.rb +46 -0
- data/test/workbook/worksheet/tc_data_validation.rb +265 -0
- data/test/workbook/worksheet/tc_date_time_converter.rb +124 -0
- data/test/workbook/worksheet/tc_header_footer.rb +151 -0
- data/test/workbook/worksheet/tc_icon_set.rb +45 -0
- data/test/workbook/worksheet/tc_page_margins.rb +97 -0
- data/test/workbook/worksheet/tc_page_set_up_pr.rb +15 -0
- data/test/workbook/worksheet/tc_page_setup.rb +143 -0
- data/test/workbook/worksheet/tc_pane.rb +54 -0
- data/test/workbook/worksheet/tc_pivot_table.rb +120 -0
- data/test/workbook/worksheet/tc_pivot_table_cache_definition.rb +54 -0
- data/test/workbook/worksheet/tc_print_options.rb +72 -0
- data/test/workbook/worksheet/tc_protected_range.rb +17 -0
- data/test/workbook/worksheet/tc_rich_text.rb +44 -0
- data/test/workbook/worksheet/tc_rich_text_run.rb +172 -0
- data/test/workbook/worksheet/tc_row.rb +117 -0
- data/test/workbook/worksheet/tc_selection.rb +55 -0
- data/test/workbook/worksheet/tc_sheet_calc_pr.rb +18 -0
- data/test/workbook/worksheet/tc_sheet_format_pr.rb +88 -0
- data/test/workbook/worksheet/tc_sheet_pr.rb +49 -0
- data/test/workbook/worksheet/tc_sheet_protection.rb +117 -0
- data/test/workbook/worksheet/tc_sheet_view.rb +214 -0
- data/test/workbook/worksheet/tc_table.rb +68 -0
- data/test/workbook/worksheet/tc_table_style_info.rb +53 -0
- data/test/workbook/worksheet/tc_worksheet.rb +577 -0
- data/test/workbook/worksheet/tc_worksheet_hyperlink.rb +55 -0
- metadata +583 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns="urn:schemas-microsoft-com:office:powerpoint"
|
4
|
+
targetNamespace="urn:schemas-microsoft-com:office:powerpoint" elementFormDefault="qualified"
|
5
|
+
attributeFormDefault="unqualified">
|
6
|
+
<xsd:element name="iscomment" type="CT_Empty"/>
|
7
|
+
<xsd:element name="textdata" type="CT_Rel"/>
|
8
|
+
<xsd:complexType name="CT_Empty"/>
|
9
|
+
<xsd:complexType name="CT_Rel">
|
10
|
+
<xsd:attribute name="id" type="xsd:string"/>
|
11
|
+
</xsd:complexType>
|
12
|
+
</xsd:schema>
|
@@ -0,0 +1,108 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns="urn:schemas-microsoft-com:office:excel"
|
4
|
+
xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
5
|
+
targetNamespace="urn:schemas-microsoft-com:office:excel" elementFormDefault="qualified"
|
6
|
+
attributeFormDefault="unqualified">
|
7
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
8
|
+
schemaLocation="shared-commonSimpleTypes.xsd"/>
|
9
|
+
<xsd:element name="ClientData" type="CT_ClientData"/>
|
10
|
+
<xsd:complexType name="CT_ClientData">
|
11
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
12
|
+
<xsd:element name="MoveWithCells" type="s:ST_TrueFalseBlank"/>
|
13
|
+
<xsd:element name="SizeWithCells" type="s:ST_TrueFalseBlank"/>
|
14
|
+
<xsd:element name="Anchor" type="xsd:string"/>
|
15
|
+
<xsd:element name="Locked" type="s:ST_TrueFalseBlank"/>
|
16
|
+
<xsd:element name="DefaultSize" type="s:ST_TrueFalseBlank"/>
|
17
|
+
<xsd:element name="PrintObject" type="s:ST_TrueFalseBlank"/>
|
18
|
+
<xsd:element name="Disabled" type="s:ST_TrueFalseBlank"/>
|
19
|
+
<xsd:element name="AutoFill" type="s:ST_TrueFalseBlank"/>
|
20
|
+
<xsd:element name="AutoLine" type="s:ST_TrueFalseBlank"/>
|
21
|
+
<xsd:element name="AutoPict" type="s:ST_TrueFalseBlank"/>
|
22
|
+
<xsd:element name="FmlaMacro" type="xsd:string"/>
|
23
|
+
<xsd:element name="TextHAlign" type="xsd:string"/>
|
24
|
+
<xsd:element name="TextVAlign" type="xsd:string"/>
|
25
|
+
<xsd:element name="LockText" type="s:ST_TrueFalseBlank"/>
|
26
|
+
<xsd:element name="JustLastX" type="s:ST_TrueFalseBlank"/>
|
27
|
+
<xsd:element name="SecretEdit" type="s:ST_TrueFalseBlank"/>
|
28
|
+
<xsd:element name="Default" type="s:ST_TrueFalseBlank"/>
|
29
|
+
<xsd:element name="Help" type="s:ST_TrueFalseBlank"/>
|
30
|
+
<xsd:element name="Cancel" type="s:ST_TrueFalseBlank"/>
|
31
|
+
<xsd:element name="Dismiss" type="s:ST_TrueFalseBlank"/>
|
32
|
+
<xsd:element name="Accel" type="xsd:integer"/>
|
33
|
+
<xsd:element name="Accel2" type="xsd:integer"/>
|
34
|
+
<xsd:element name="Row" type="xsd:integer"/>
|
35
|
+
<xsd:element name="Column" type="xsd:integer"/>
|
36
|
+
<xsd:element name="Visible" type="s:ST_TrueFalseBlank"/>
|
37
|
+
<xsd:element name="RowHidden" type="s:ST_TrueFalseBlank"/>
|
38
|
+
<xsd:element name="ColHidden" type="s:ST_TrueFalseBlank"/>
|
39
|
+
<xsd:element name="VTEdit" type="xsd:integer"/>
|
40
|
+
<xsd:element name="MultiLine" type="s:ST_TrueFalseBlank"/>
|
41
|
+
<xsd:element name="VScroll" type="s:ST_TrueFalseBlank"/>
|
42
|
+
<xsd:element name="ValidIds" type="s:ST_TrueFalseBlank"/>
|
43
|
+
<xsd:element name="FmlaRange" type="xsd:string"/>
|
44
|
+
<xsd:element name="WidthMin" type="xsd:integer"/>
|
45
|
+
<xsd:element name="Sel" type="xsd:integer"/>
|
46
|
+
<xsd:element name="NoThreeD2" type="s:ST_TrueFalseBlank"/>
|
47
|
+
<xsd:element name="SelType" type="xsd:string"/>
|
48
|
+
<xsd:element name="MultiSel" type="xsd:string"/>
|
49
|
+
<xsd:element name="LCT" type="xsd:string"/>
|
50
|
+
<xsd:element name="ListItem" type="xsd:string"/>
|
51
|
+
<xsd:element name="DropStyle" type="xsd:string"/>
|
52
|
+
<xsd:element name="Colored" type="s:ST_TrueFalseBlank"/>
|
53
|
+
<xsd:element name="DropLines" type="xsd:integer"/>
|
54
|
+
<xsd:element name="Checked" type="xsd:integer"/>
|
55
|
+
<xsd:element name="FmlaLink" type="xsd:string"/>
|
56
|
+
<xsd:element name="FmlaPict" type="xsd:string"/>
|
57
|
+
<xsd:element name="NoThreeD" type="s:ST_TrueFalseBlank"/>
|
58
|
+
<xsd:element name="FirstButton" type="s:ST_TrueFalseBlank"/>
|
59
|
+
<xsd:element name="FmlaGroup" type="xsd:string"/>
|
60
|
+
<xsd:element name="Val" type="xsd:integer"/>
|
61
|
+
<xsd:element name="Min" type="xsd:integer"/>
|
62
|
+
<xsd:element name="Max" type="xsd:integer"/>
|
63
|
+
<xsd:element name="Inc" type="xsd:integer"/>
|
64
|
+
<xsd:element name="Page" type="xsd:integer"/>
|
65
|
+
<xsd:element name="Horiz" type="s:ST_TrueFalseBlank"/>
|
66
|
+
<xsd:element name="Dx" type="xsd:integer"/>
|
67
|
+
<xsd:element name="MapOCX" type="s:ST_TrueFalseBlank"/>
|
68
|
+
<xsd:element name="CF" type="ST_CF"/>
|
69
|
+
<xsd:element name="Camera" type="s:ST_TrueFalseBlank"/>
|
70
|
+
<xsd:element name="RecalcAlways" type="s:ST_TrueFalseBlank"/>
|
71
|
+
<xsd:element name="AutoScale" type="s:ST_TrueFalseBlank"/>
|
72
|
+
<xsd:element name="DDE" type="s:ST_TrueFalseBlank"/>
|
73
|
+
<xsd:element name="UIObj" type="s:ST_TrueFalseBlank"/>
|
74
|
+
<xsd:element name="ScriptText" type="xsd:string"/>
|
75
|
+
<xsd:element name="ScriptExtended" type="xsd:string"/>
|
76
|
+
<xsd:element name="ScriptLanguage" type="xsd:nonNegativeInteger"/>
|
77
|
+
<xsd:element name="ScriptLocation" type="xsd:nonNegativeInteger"/>
|
78
|
+
<xsd:element name="FmlaTxbx" type="xsd:string"/>
|
79
|
+
</xsd:choice>
|
80
|
+
<xsd:attribute name="ObjectType" type="ST_ObjectType" use="required"/>
|
81
|
+
</xsd:complexType>
|
82
|
+
<xsd:simpleType name="ST_CF">
|
83
|
+
<xsd:restriction base="xsd:string"/>
|
84
|
+
</xsd:simpleType>
|
85
|
+
<xsd:simpleType name="ST_ObjectType">
|
86
|
+
<xsd:restriction base="xsd:string">
|
87
|
+
<xsd:enumeration value="Button"/>
|
88
|
+
<xsd:enumeration value="Checkbox"/>
|
89
|
+
<xsd:enumeration value="Dialog"/>
|
90
|
+
<xsd:enumeration value="Drop"/>
|
91
|
+
<xsd:enumeration value="Edit"/>
|
92
|
+
<xsd:enumeration value="GBox"/>
|
93
|
+
<xsd:enumeration value="Label"/>
|
94
|
+
<xsd:enumeration value="LineA"/>
|
95
|
+
<xsd:enumeration value="List"/>
|
96
|
+
<xsd:enumeration value="Movie"/>
|
97
|
+
<xsd:enumeration value="Note"/>
|
98
|
+
<xsd:enumeration value="Pict"/>
|
99
|
+
<xsd:enumeration value="Radio"/>
|
100
|
+
<xsd:enumeration value="RectA"/>
|
101
|
+
<xsd:enumeration value="Scroll"/>
|
102
|
+
<xsd:enumeration value="Spin"/>
|
103
|
+
<xsd:enumeration value="Shape"/>
|
104
|
+
<xsd:enumeration value="Group"/>
|
105
|
+
<xsd:enumeration value="Rect"/>
|
106
|
+
</xsd:restriction>
|
107
|
+
</xsd:simpleType>
|
108
|
+
</xsd:schema>
|
@@ -0,0 +1,96 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns="urn:schemas-microsoft-com:office:word"
|
4
|
+
targetNamespace="urn:schemas-microsoft-com:office:word" elementFormDefault="qualified"
|
5
|
+
attributeFormDefault="unqualified">
|
6
|
+
<xsd:element name="bordertop" type="CT_Border"/>
|
7
|
+
<xsd:element name="borderleft" type="CT_Border"/>
|
8
|
+
<xsd:element name="borderright" type="CT_Border"/>
|
9
|
+
<xsd:element name="borderbottom" type="CT_Border"/>
|
10
|
+
<xsd:complexType name="CT_Border">
|
11
|
+
<xsd:attribute name="type" type="ST_BorderType" use="optional"/>
|
12
|
+
<xsd:attribute name="width" type="xsd:positiveInteger" use="optional"/>
|
13
|
+
<xsd:attribute name="shadow" type="ST_BorderShadow" use="optional"/>
|
14
|
+
</xsd:complexType>
|
15
|
+
<xsd:element name="wrap" type="CT_Wrap"/>
|
16
|
+
<xsd:complexType name="CT_Wrap">
|
17
|
+
<xsd:attribute name="type" type="ST_WrapType" use="optional"/>
|
18
|
+
<xsd:attribute name="side" type="ST_WrapSide" use="optional"/>
|
19
|
+
<xsd:attribute name="anchorx" type="ST_HorizontalAnchor" use="optional"/>
|
20
|
+
<xsd:attribute name="anchory" type="ST_VerticalAnchor" use="optional"/>
|
21
|
+
</xsd:complexType>
|
22
|
+
<xsd:element name="anchorlock" type="CT_AnchorLock"/>
|
23
|
+
<xsd:complexType name="CT_AnchorLock"/>
|
24
|
+
<xsd:simpleType name="ST_BorderType">
|
25
|
+
<xsd:restriction base="xsd:string">
|
26
|
+
<xsd:enumeration value="none"/>
|
27
|
+
<xsd:enumeration value="single"/>
|
28
|
+
<xsd:enumeration value="thick"/>
|
29
|
+
<xsd:enumeration value="double"/>
|
30
|
+
<xsd:enumeration value="hairline"/>
|
31
|
+
<xsd:enumeration value="dot"/>
|
32
|
+
<xsd:enumeration value="dash"/>
|
33
|
+
<xsd:enumeration value="dotDash"/>
|
34
|
+
<xsd:enumeration value="dashDotDot"/>
|
35
|
+
<xsd:enumeration value="triple"/>
|
36
|
+
<xsd:enumeration value="thinThickSmall"/>
|
37
|
+
<xsd:enumeration value="thickThinSmall"/>
|
38
|
+
<xsd:enumeration value="thickBetweenThinSmall"/>
|
39
|
+
<xsd:enumeration value="thinThick"/>
|
40
|
+
<xsd:enumeration value="thickThin"/>
|
41
|
+
<xsd:enumeration value="thickBetweenThin"/>
|
42
|
+
<xsd:enumeration value="thinThickLarge"/>
|
43
|
+
<xsd:enumeration value="thickThinLarge"/>
|
44
|
+
<xsd:enumeration value="thickBetweenThinLarge"/>
|
45
|
+
<xsd:enumeration value="wave"/>
|
46
|
+
<xsd:enumeration value="doubleWave"/>
|
47
|
+
<xsd:enumeration value="dashedSmall"/>
|
48
|
+
<xsd:enumeration value="dashDotStroked"/>
|
49
|
+
<xsd:enumeration value="threeDEmboss"/>
|
50
|
+
<xsd:enumeration value="threeDEngrave"/>
|
51
|
+
<xsd:enumeration value="HTMLOutset"/>
|
52
|
+
<xsd:enumeration value="HTMLInset"/>
|
53
|
+
</xsd:restriction>
|
54
|
+
</xsd:simpleType>
|
55
|
+
<xsd:simpleType name="ST_BorderShadow">
|
56
|
+
<xsd:restriction base="xsd:string">
|
57
|
+
<xsd:enumeration value="t"/>
|
58
|
+
<xsd:enumeration value="true"/>
|
59
|
+
<xsd:enumeration value="f"/>
|
60
|
+
<xsd:enumeration value="false"/>
|
61
|
+
</xsd:restriction>
|
62
|
+
</xsd:simpleType>
|
63
|
+
<xsd:simpleType name="ST_WrapType">
|
64
|
+
<xsd:restriction base="xsd:string">
|
65
|
+
<xsd:enumeration value="topAndBottom"/>
|
66
|
+
<xsd:enumeration value="square"/>
|
67
|
+
<xsd:enumeration value="none"/>
|
68
|
+
<xsd:enumeration value="tight"/>
|
69
|
+
<xsd:enumeration value="through"/>
|
70
|
+
</xsd:restriction>
|
71
|
+
</xsd:simpleType>
|
72
|
+
<xsd:simpleType name="ST_WrapSide">
|
73
|
+
<xsd:restriction base="xsd:string">
|
74
|
+
<xsd:enumeration value="both"/>
|
75
|
+
<xsd:enumeration value="left"/>
|
76
|
+
<xsd:enumeration value="right"/>
|
77
|
+
<xsd:enumeration value="largest"/>
|
78
|
+
</xsd:restriction>
|
79
|
+
</xsd:simpleType>
|
80
|
+
<xsd:simpleType name="ST_HorizontalAnchor">
|
81
|
+
<xsd:restriction base="xsd:string">
|
82
|
+
<xsd:enumeration value="margin"/>
|
83
|
+
<xsd:enumeration value="page"/>
|
84
|
+
<xsd:enumeration value="text"/>
|
85
|
+
<xsd:enumeration value="char"/>
|
86
|
+
</xsd:restriction>
|
87
|
+
</xsd:simpleType>
|
88
|
+
<xsd:simpleType name="ST_VerticalAnchor">
|
89
|
+
<xsd:restriction base="xsd:string">
|
90
|
+
<xsd:enumeration value="margin"/>
|
91
|
+
<xsd:enumeration value="page"/>
|
92
|
+
<xsd:enumeration value="text"/>
|
93
|
+
<xsd:enumeration value="line"/>
|
94
|
+
</xsd:restriction>
|
95
|
+
</xsd:simpleType>
|
96
|
+
</xsd:schema>
|
data/lib/schema/wml.xsd
ADDED
@@ -0,0 +1,3644 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
4
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
5
|
+
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
|
6
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
7
|
+
xmlns="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
8
|
+
xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
9
|
+
elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all"
|
10
|
+
targetNamespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
11
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
12
|
+
schemaLocation="dml-wordprocessingDrawing.xsd"/>
|
13
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
14
|
+
schemaLocation="shared-math.xsd"/>
|
15
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
16
|
+
schemaLocation="shared-relationshipReference.xsd"/>
|
17
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
18
|
+
schemaLocation="shared-commonSimpleTypes.xsd"/>
|
19
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
|
20
|
+
schemaLocation="shared-customXmlSchemaProperties.xsd"/>
|
21
|
+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
22
|
+
<xsd:complexType name="CT_Empty"/>
|
23
|
+
<xsd:complexType name="CT_OnOff">
|
24
|
+
<xsd:attribute name="val" type="s:ST_OnOff"/>
|
25
|
+
</xsd:complexType>
|
26
|
+
<xsd:simpleType name="ST_LongHexNumber">
|
27
|
+
<xsd:restriction base="xsd:hexBinary">
|
28
|
+
<xsd:length value="4"/>
|
29
|
+
</xsd:restriction>
|
30
|
+
</xsd:simpleType>
|
31
|
+
<xsd:complexType name="CT_LongHexNumber">
|
32
|
+
<xsd:attribute name="val" type="ST_LongHexNumber" use="required"/>
|
33
|
+
</xsd:complexType>
|
34
|
+
<xsd:simpleType name="ST_ShortHexNumber">
|
35
|
+
<xsd:restriction base="xsd:hexBinary">
|
36
|
+
<xsd:length value="2"/>
|
37
|
+
</xsd:restriction>
|
38
|
+
</xsd:simpleType>
|
39
|
+
<xsd:simpleType name="ST_UcharHexNumber">
|
40
|
+
<xsd:restriction base="xsd:hexBinary">
|
41
|
+
<xsd:length value="1"/>
|
42
|
+
</xsd:restriction>
|
43
|
+
</xsd:simpleType>
|
44
|
+
<xsd:complexType name="CT_Charset">
|
45
|
+
<xsd:attribute name="val" type="ST_UcharHexNumber" use="required"/>
|
46
|
+
<xsd:attribute name="characterSet" type="s:ST_String" use="optional"/>
|
47
|
+
</xsd:complexType>
|
48
|
+
<xsd:simpleType name="ST_DecimalNumberOrPercent">
|
49
|
+
<xsd:union memberTypes="ST_UnqualifiedPercentage s:ST_Percentage"/>
|
50
|
+
</xsd:simpleType>
|
51
|
+
<xsd:simpleType name="ST_UnqualifiedPercentage">
|
52
|
+
<xsd:restriction base="xsd:integer"/>
|
53
|
+
</xsd:simpleType>
|
54
|
+
<xsd:simpleType name="ST_DecimalNumber">
|
55
|
+
<xsd:restriction base="xsd:integer"/>
|
56
|
+
</xsd:simpleType>
|
57
|
+
<xsd:complexType name="CT_DecimalNumber">
|
58
|
+
<xsd:attribute name="val" type="ST_DecimalNumber" use="required"/>
|
59
|
+
</xsd:complexType>
|
60
|
+
<xsd:complexType name="CT_UnsignedDecimalNumber">
|
61
|
+
<xsd:attribute name="val" type="s:ST_UnsignedDecimalNumber" use="required"/>
|
62
|
+
</xsd:complexType>
|
63
|
+
<xsd:complexType name="CT_DecimalNumberOrPrecent">
|
64
|
+
<xsd:attribute name="val" type="ST_DecimalNumberOrPercent" use="required"/>
|
65
|
+
</xsd:complexType>
|
66
|
+
<xsd:complexType name="CT_TwipsMeasure">
|
67
|
+
<xsd:attribute name="val" type="s:ST_TwipsMeasure" use="required"/>
|
68
|
+
</xsd:complexType>
|
69
|
+
<xsd:simpleType name="ST_SignedTwipsMeasure">
|
70
|
+
<xsd:union memberTypes="xsd:integer s:ST_UniversalMeasure"/>
|
71
|
+
</xsd:simpleType>
|
72
|
+
<xsd:complexType name="CT_SignedTwipsMeasure">
|
73
|
+
<xsd:attribute name="val" type="ST_SignedTwipsMeasure" use="required"/>
|
74
|
+
</xsd:complexType>
|
75
|
+
<xsd:simpleType name="ST_PixelsMeasure">
|
76
|
+
<xsd:restriction base="s:ST_UnsignedDecimalNumber"/>
|
77
|
+
</xsd:simpleType>
|
78
|
+
<xsd:complexType name="CT_PixelsMeasure">
|
79
|
+
<xsd:attribute name="val" type="ST_PixelsMeasure" use="required"/>
|
80
|
+
</xsd:complexType>
|
81
|
+
<xsd:simpleType name="ST_HpsMeasure">
|
82
|
+
<xsd:union memberTypes="s:ST_UnsignedDecimalNumber s:ST_PositiveUniversalMeasure"/>
|
83
|
+
</xsd:simpleType>
|
84
|
+
<xsd:complexType name="CT_HpsMeasure">
|
85
|
+
<xsd:attribute name="val" type="ST_HpsMeasure" use="required"/>
|
86
|
+
</xsd:complexType>
|
87
|
+
<xsd:simpleType name="ST_SignedHpsMeasure">
|
88
|
+
<xsd:union memberTypes="xsd:integer s:ST_UniversalMeasure"/>
|
89
|
+
</xsd:simpleType>
|
90
|
+
<xsd:complexType name="CT_SignedHpsMeasure">
|
91
|
+
<xsd:attribute name="val" type="ST_SignedHpsMeasure" use="required"/>
|
92
|
+
</xsd:complexType>
|
93
|
+
<xsd:simpleType name="ST_DateTime">
|
94
|
+
<xsd:restriction base="xsd:dateTime"/>
|
95
|
+
</xsd:simpleType>
|
96
|
+
<xsd:simpleType name="ST_MacroName">
|
97
|
+
<xsd:restriction base="xsd:string">
|
98
|
+
<xsd:maxLength value="33"/>
|
99
|
+
</xsd:restriction>
|
100
|
+
</xsd:simpleType>
|
101
|
+
<xsd:complexType name="CT_MacroName">
|
102
|
+
<xsd:attribute name="val" use="required" type="ST_MacroName"/>
|
103
|
+
</xsd:complexType>
|
104
|
+
<xsd:simpleType name="ST_EighthPointMeasure">
|
105
|
+
<xsd:restriction base="s:ST_UnsignedDecimalNumber"/>
|
106
|
+
</xsd:simpleType>
|
107
|
+
<xsd:simpleType name="ST_PointMeasure">
|
108
|
+
<xsd:restriction base="s:ST_UnsignedDecimalNumber"/>
|
109
|
+
</xsd:simpleType>
|
110
|
+
<xsd:complexType name="CT_String">
|
111
|
+
<xsd:attribute name="val" type="s:ST_String" use="required"/>
|
112
|
+
</xsd:complexType>
|
113
|
+
<xsd:simpleType name="ST_TextScale">
|
114
|
+
<xsd:union memberTypes="ST_TextScalePercent ST_TextScaleDecimal"/>
|
115
|
+
</xsd:simpleType>
|
116
|
+
<xsd:simpleType name="ST_TextScalePercent">
|
117
|
+
<xsd:restriction base="xsd:string">
|
118
|
+
<xsd:pattern value="0*(600|([0-5]?[0-9]?[0-9]))%"/>
|
119
|
+
</xsd:restriction>
|
120
|
+
</xsd:simpleType>
|
121
|
+
<xsd:simpleType name="ST_TextScaleDecimal">
|
122
|
+
<xsd:restriction base="xsd:integer">
|
123
|
+
<xsd:minInclusive value="0"/>
|
124
|
+
<xsd:maxInclusive value="600"/>
|
125
|
+
</xsd:restriction>
|
126
|
+
</xsd:simpleType>
|
127
|
+
<xsd:complexType name="CT_TextScale">
|
128
|
+
<xsd:attribute name="val" type="ST_TextScale"/>
|
129
|
+
</xsd:complexType>
|
130
|
+
<xsd:simpleType name="ST_HighlightColor">
|
131
|
+
<xsd:restriction base="xsd:string">
|
132
|
+
<xsd:enumeration value="black"/>
|
133
|
+
<xsd:enumeration value="blue"/>
|
134
|
+
<xsd:enumeration value="cyan"/>
|
135
|
+
<xsd:enumeration value="green"/>
|
136
|
+
<xsd:enumeration value="magenta"/>
|
137
|
+
<xsd:enumeration value="red"/>
|
138
|
+
<xsd:enumeration value="yellow"/>
|
139
|
+
<xsd:enumeration value="white"/>
|
140
|
+
<xsd:enumeration value="darkBlue"/>
|
141
|
+
<xsd:enumeration value="darkCyan"/>
|
142
|
+
<xsd:enumeration value="darkGreen"/>
|
143
|
+
<xsd:enumeration value="darkMagenta"/>
|
144
|
+
<xsd:enumeration value="darkRed"/>
|
145
|
+
<xsd:enumeration value="darkYellow"/>
|
146
|
+
<xsd:enumeration value="darkGray"/>
|
147
|
+
<xsd:enumeration value="lightGray"/>
|
148
|
+
<xsd:enumeration value="none"/>
|
149
|
+
</xsd:restriction>
|
150
|
+
</xsd:simpleType>
|
151
|
+
<xsd:complexType name="CT_Highlight">
|
152
|
+
<xsd:attribute name="val" type="ST_HighlightColor" use="required"/>
|
153
|
+
</xsd:complexType>
|
154
|
+
<xsd:simpleType name="ST_HexColorAuto">
|
155
|
+
<xsd:restriction base="xsd:string">
|
156
|
+
<xsd:enumeration value="auto"/>
|
157
|
+
</xsd:restriction>
|
158
|
+
</xsd:simpleType>
|
159
|
+
<xsd:simpleType name="ST_HexColor">
|
160
|
+
<xsd:union memberTypes="ST_HexColorAuto s:ST_HexColorRGB"/>
|
161
|
+
</xsd:simpleType>
|
162
|
+
<xsd:complexType name="CT_Color">
|
163
|
+
<xsd:attribute name="val" type="ST_HexColor" use="required"/>
|
164
|
+
<xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/>
|
165
|
+
<xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/>
|
166
|
+
<xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/>
|
167
|
+
</xsd:complexType>
|
168
|
+
<xsd:complexType name="CT_Lang">
|
169
|
+
<xsd:attribute name="val" type="s:ST_Lang" use="required"/>
|
170
|
+
</xsd:complexType>
|
171
|
+
<xsd:complexType name="CT_Guid">
|
172
|
+
<xsd:attribute name="val" type="s:ST_Guid"/>
|
173
|
+
</xsd:complexType>
|
174
|
+
<xsd:simpleType name="ST_Underline">
|
175
|
+
<xsd:restriction base="xsd:string">
|
176
|
+
<xsd:enumeration value="single"/>
|
177
|
+
<xsd:enumeration value="words"/>
|
178
|
+
<xsd:enumeration value="double"/>
|
179
|
+
<xsd:enumeration value="thick"/>
|
180
|
+
<xsd:enumeration value="dotted"/>
|
181
|
+
<xsd:enumeration value="dottedHeavy"/>
|
182
|
+
<xsd:enumeration value="dash"/>
|
183
|
+
<xsd:enumeration value="dashedHeavy"/>
|
184
|
+
<xsd:enumeration value="dashLong"/>
|
185
|
+
<xsd:enumeration value="dashLongHeavy"/>
|
186
|
+
<xsd:enumeration value="dotDash"/>
|
187
|
+
<xsd:enumeration value="dashDotHeavy"/>
|
188
|
+
<xsd:enumeration value="dotDotDash"/>
|
189
|
+
<xsd:enumeration value="dashDotDotHeavy"/>
|
190
|
+
<xsd:enumeration value="wave"/>
|
191
|
+
<xsd:enumeration value="wavyHeavy"/>
|
192
|
+
<xsd:enumeration value="wavyDouble"/>
|
193
|
+
<xsd:enumeration value="none"/>
|
194
|
+
</xsd:restriction>
|
195
|
+
</xsd:simpleType>
|
196
|
+
<xsd:complexType name="CT_Underline">
|
197
|
+
<xsd:attribute name="val" type="ST_Underline" use="optional"/>
|
198
|
+
<xsd:attribute name="color" type="ST_HexColor" use="optional"/>
|
199
|
+
<xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/>
|
200
|
+
<xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/>
|
201
|
+
<xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/>
|
202
|
+
</xsd:complexType>
|
203
|
+
<xsd:simpleType name="ST_TextEffect">
|
204
|
+
<xsd:restriction base="xsd:string">
|
205
|
+
<xsd:enumeration value="blinkBackground"/>
|
206
|
+
<xsd:enumeration value="lights"/>
|
207
|
+
<xsd:enumeration value="antsBlack"/>
|
208
|
+
<xsd:enumeration value="antsRed"/>
|
209
|
+
<xsd:enumeration value="shimmer"/>
|
210
|
+
<xsd:enumeration value="sparkle"/>
|
211
|
+
<xsd:enumeration value="none"/>
|
212
|
+
</xsd:restriction>
|
213
|
+
</xsd:simpleType>
|
214
|
+
<xsd:complexType name="CT_TextEffect">
|
215
|
+
<xsd:attribute name="val" type="ST_TextEffect" use="required"/>
|
216
|
+
</xsd:complexType>
|
217
|
+
<xsd:simpleType name="ST_Border">
|
218
|
+
<xsd:restriction base="xsd:string">
|
219
|
+
<xsd:enumeration value="nil"/>
|
220
|
+
<xsd:enumeration value="none"/>
|
221
|
+
<xsd:enumeration value="single"/>
|
222
|
+
<xsd:enumeration value="thick"/>
|
223
|
+
<xsd:enumeration value="double"/>
|
224
|
+
<xsd:enumeration value="dotted"/>
|
225
|
+
<xsd:enumeration value="dashed"/>
|
226
|
+
<xsd:enumeration value="dotDash"/>
|
227
|
+
<xsd:enumeration value="dotDotDash"/>
|
228
|
+
<xsd:enumeration value="triple"/>
|
229
|
+
<xsd:enumeration value="thinThickSmallGap"/>
|
230
|
+
<xsd:enumeration value="thickThinSmallGap"/>
|
231
|
+
<xsd:enumeration value="thinThickThinSmallGap"/>
|
232
|
+
<xsd:enumeration value="thinThickMediumGap"/>
|
233
|
+
<xsd:enumeration value="thickThinMediumGap"/>
|
234
|
+
<xsd:enumeration value="thinThickThinMediumGap"/>
|
235
|
+
<xsd:enumeration value="thinThickLargeGap"/>
|
236
|
+
<xsd:enumeration value="thickThinLargeGap"/>
|
237
|
+
<xsd:enumeration value="thinThickThinLargeGap"/>
|
238
|
+
<xsd:enumeration value="wave"/>
|
239
|
+
<xsd:enumeration value="doubleWave"/>
|
240
|
+
<xsd:enumeration value="dashSmallGap"/>
|
241
|
+
<xsd:enumeration value="dashDotStroked"/>
|
242
|
+
<xsd:enumeration value="threeDEmboss"/>
|
243
|
+
<xsd:enumeration value="threeDEngrave"/>
|
244
|
+
<xsd:enumeration value="outset"/>
|
245
|
+
<xsd:enumeration value="inset"/>
|
246
|
+
<xsd:enumeration value="apples"/>
|
247
|
+
<xsd:enumeration value="archedScallops"/>
|
248
|
+
<xsd:enumeration value="babyPacifier"/>
|
249
|
+
<xsd:enumeration value="babyRattle"/>
|
250
|
+
<xsd:enumeration value="balloons3Colors"/>
|
251
|
+
<xsd:enumeration value="balloonsHotAir"/>
|
252
|
+
<xsd:enumeration value="basicBlackDashes"/>
|
253
|
+
<xsd:enumeration value="basicBlackDots"/>
|
254
|
+
<xsd:enumeration value="basicBlackSquares"/>
|
255
|
+
<xsd:enumeration value="basicThinLines"/>
|
256
|
+
<xsd:enumeration value="basicWhiteDashes"/>
|
257
|
+
<xsd:enumeration value="basicWhiteDots"/>
|
258
|
+
<xsd:enumeration value="basicWhiteSquares"/>
|
259
|
+
<xsd:enumeration value="basicWideInline"/>
|
260
|
+
<xsd:enumeration value="basicWideMidline"/>
|
261
|
+
<xsd:enumeration value="basicWideOutline"/>
|
262
|
+
<xsd:enumeration value="bats"/>
|
263
|
+
<xsd:enumeration value="birds"/>
|
264
|
+
<xsd:enumeration value="birdsFlight"/>
|
265
|
+
<xsd:enumeration value="cabins"/>
|
266
|
+
<xsd:enumeration value="cakeSlice"/>
|
267
|
+
<xsd:enumeration value="candyCorn"/>
|
268
|
+
<xsd:enumeration value="celticKnotwork"/>
|
269
|
+
<xsd:enumeration value="certificateBanner"/>
|
270
|
+
<xsd:enumeration value="chainLink"/>
|
271
|
+
<xsd:enumeration value="champagneBottle"/>
|
272
|
+
<xsd:enumeration value="checkedBarBlack"/>
|
273
|
+
<xsd:enumeration value="checkedBarColor"/>
|
274
|
+
<xsd:enumeration value="checkered"/>
|
275
|
+
<xsd:enumeration value="christmasTree"/>
|
276
|
+
<xsd:enumeration value="circlesLines"/>
|
277
|
+
<xsd:enumeration value="circlesRectangles"/>
|
278
|
+
<xsd:enumeration value="classicalWave"/>
|
279
|
+
<xsd:enumeration value="clocks"/>
|
280
|
+
<xsd:enumeration value="compass"/>
|
281
|
+
<xsd:enumeration value="confetti"/>
|
282
|
+
<xsd:enumeration value="confettiGrays"/>
|
283
|
+
<xsd:enumeration value="confettiOutline"/>
|
284
|
+
<xsd:enumeration value="confettiStreamers"/>
|
285
|
+
<xsd:enumeration value="confettiWhite"/>
|
286
|
+
<xsd:enumeration value="cornerTriangles"/>
|
287
|
+
<xsd:enumeration value="couponCutoutDashes"/>
|
288
|
+
<xsd:enumeration value="couponCutoutDots"/>
|
289
|
+
<xsd:enumeration value="crazyMaze"/>
|
290
|
+
<xsd:enumeration value="creaturesButterfly"/>
|
291
|
+
<xsd:enumeration value="creaturesFish"/>
|
292
|
+
<xsd:enumeration value="creaturesInsects"/>
|
293
|
+
<xsd:enumeration value="creaturesLadyBug"/>
|
294
|
+
<xsd:enumeration value="crossStitch"/>
|
295
|
+
<xsd:enumeration value="cup"/>
|
296
|
+
<xsd:enumeration value="decoArch"/>
|
297
|
+
<xsd:enumeration value="decoArchColor"/>
|
298
|
+
<xsd:enumeration value="decoBlocks"/>
|
299
|
+
<xsd:enumeration value="diamondsGray"/>
|
300
|
+
<xsd:enumeration value="doubleD"/>
|
301
|
+
<xsd:enumeration value="doubleDiamonds"/>
|
302
|
+
<xsd:enumeration value="earth1"/>
|
303
|
+
<xsd:enumeration value="earth2"/>
|
304
|
+
<xsd:enumeration value="earth3"/>
|
305
|
+
<xsd:enumeration value="eclipsingSquares1"/>
|
306
|
+
<xsd:enumeration value="eclipsingSquares2"/>
|
307
|
+
<xsd:enumeration value="eggsBlack"/>
|
308
|
+
<xsd:enumeration value="fans"/>
|
309
|
+
<xsd:enumeration value="film"/>
|
310
|
+
<xsd:enumeration value="firecrackers"/>
|
311
|
+
<xsd:enumeration value="flowersBlockPrint"/>
|
312
|
+
<xsd:enumeration value="flowersDaisies"/>
|
313
|
+
<xsd:enumeration value="flowersModern1"/>
|
314
|
+
<xsd:enumeration value="flowersModern2"/>
|
315
|
+
<xsd:enumeration value="flowersPansy"/>
|
316
|
+
<xsd:enumeration value="flowersRedRose"/>
|
317
|
+
<xsd:enumeration value="flowersRoses"/>
|
318
|
+
<xsd:enumeration value="flowersTeacup"/>
|
319
|
+
<xsd:enumeration value="flowersTiny"/>
|
320
|
+
<xsd:enumeration value="gems"/>
|
321
|
+
<xsd:enumeration value="gingerbreadMan"/>
|
322
|
+
<xsd:enumeration value="gradient"/>
|
323
|
+
<xsd:enumeration value="handmade1"/>
|
324
|
+
<xsd:enumeration value="handmade2"/>
|
325
|
+
<xsd:enumeration value="heartBalloon"/>
|
326
|
+
<xsd:enumeration value="heartGray"/>
|
327
|
+
<xsd:enumeration value="hearts"/>
|
328
|
+
<xsd:enumeration value="heebieJeebies"/>
|
329
|
+
<xsd:enumeration value="holly"/>
|
330
|
+
<xsd:enumeration value="houseFunky"/>
|
331
|
+
<xsd:enumeration value="hypnotic"/>
|
332
|
+
<xsd:enumeration value="iceCreamCones"/>
|
333
|
+
<xsd:enumeration value="lightBulb"/>
|
334
|
+
<xsd:enumeration value="lightning1"/>
|
335
|
+
<xsd:enumeration value="lightning2"/>
|
336
|
+
<xsd:enumeration value="mapPins"/>
|
337
|
+
<xsd:enumeration value="mapleLeaf"/>
|
338
|
+
<xsd:enumeration value="mapleMuffins"/>
|
339
|
+
<xsd:enumeration value="marquee"/>
|
340
|
+
<xsd:enumeration value="marqueeToothed"/>
|
341
|
+
<xsd:enumeration value="moons"/>
|
342
|
+
<xsd:enumeration value="mosaic"/>
|
343
|
+
<xsd:enumeration value="musicNotes"/>
|
344
|
+
<xsd:enumeration value="northwest"/>
|
345
|
+
<xsd:enumeration value="ovals"/>
|
346
|
+
<xsd:enumeration value="packages"/>
|
347
|
+
<xsd:enumeration value="palmsBlack"/>
|
348
|
+
<xsd:enumeration value="palmsColor"/>
|
349
|
+
<xsd:enumeration value="paperClips"/>
|
350
|
+
<xsd:enumeration value="papyrus"/>
|
351
|
+
<xsd:enumeration value="partyFavor"/>
|
352
|
+
<xsd:enumeration value="partyGlass"/>
|
353
|
+
<xsd:enumeration value="pencils"/>
|
354
|
+
<xsd:enumeration value="people"/>
|
355
|
+
<xsd:enumeration value="peopleWaving"/>
|
356
|
+
<xsd:enumeration value="peopleHats"/>
|
357
|
+
<xsd:enumeration value="poinsettias"/>
|
358
|
+
<xsd:enumeration value="postageStamp"/>
|
359
|
+
<xsd:enumeration value="pumpkin1"/>
|
360
|
+
<xsd:enumeration value="pushPinNote2"/>
|
361
|
+
<xsd:enumeration value="pushPinNote1"/>
|
362
|
+
<xsd:enumeration value="pyramids"/>
|
363
|
+
<xsd:enumeration value="pyramidsAbove"/>
|
364
|
+
<xsd:enumeration value="quadrants"/>
|
365
|
+
<xsd:enumeration value="rings"/>
|
366
|
+
<xsd:enumeration value="safari"/>
|
367
|
+
<xsd:enumeration value="sawtooth"/>
|
368
|
+
<xsd:enumeration value="sawtoothGray"/>
|
369
|
+
<xsd:enumeration value="scaredCat"/>
|
370
|
+
<xsd:enumeration value="seattle"/>
|
371
|
+
<xsd:enumeration value="shadowedSquares"/>
|
372
|
+
<xsd:enumeration value="sharksTeeth"/>
|
373
|
+
<xsd:enumeration value="shorebirdTracks"/>
|
374
|
+
<xsd:enumeration value="skyrocket"/>
|
375
|
+
<xsd:enumeration value="snowflakeFancy"/>
|
376
|
+
<xsd:enumeration value="snowflakes"/>
|
377
|
+
<xsd:enumeration value="sombrero"/>
|
378
|
+
<xsd:enumeration value="southwest"/>
|
379
|
+
<xsd:enumeration value="stars"/>
|
380
|
+
<xsd:enumeration value="starsTop"/>
|
381
|
+
<xsd:enumeration value="stars3d"/>
|
382
|
+
<xsd:enumeration value="starsBlack"/>
|
383
|
+
<xsd:enumeration value="starsShadowed"/>
|
384
|
+
<xsd:enumeration value="sun"/>
|
385
|
+
<xsd:enumeration value="swirligig"/>
|
386
|
+
<xsd:enumeration value="tornPaper"/>
|
387
|
+
<xsd:enumeration value="tornPaperBlack"/>
|
388
|
+
<xsd:enumeration value="trees"/>
|
389
|
+
<xsd:enumeration value="triangleParty"/>
|
390
|
+
<xsd:enumeration value="triangles"/>
|
391
|
+
<xsd:enumeration value="triangle1"/>
|
392
|
+
<xsd:enumeration value="triangle2"/>
|
393
|
+
<xsd:enumeration value="triangleCircle1"/>
|
394
|
+
<xsd:enumeration value="triangleCircle2"/>
|
395
|
+
<xsd:enumeration value="shapes1"/>
|
396
|
+
<xsd:enumeration value="shapes2"/>
|
397
|
+
<xsd:enumeration value="twistedLines1"/>
|
398
|
+
<xsd:enumeration value="twistedLines2"/>
|
399
|
+
<xsd:enumeration value="vine"/>
|
400
|
+
<xsd:enumeration value="waveline"/>
|
401
|
+
<xsd:enumeration value="weavingAngles"/>
|
402
|
+
<xsd:enumeration value="weavingBraid"/>
|
403
|
+
<xsd:enumeration value="weavingRibbon"/>
|
404
|
+
<xsd:enumeration value="weavingStrips"/>
|
405
|
+
<xsd:enumeration value="whiteFlowers"/>
|
406
|
+
<xsd:enumeration value="woodwork"/>
|
407
|
+
<xsd:enumeration value="xIllusions"/>
|
408
|
+
<xsd:enumeration value="zanyTriangles"/>
|
409
|
+
<xsd:enumeration value="zigZag"/>
|
410
|
+
<xsd:enumeration value="zigZagStitch"/>
|
411
|
+
<xsd:enumeration value="custom"/>
|
412
|
+
</xsd:restriction>
|
413
|
+
</xsd:simpleType>
|
414
|
+
<xsd:complexType name="CT_Border">
|
415
|
+
<xsd:attribute name="val" type="ST_Border" use="required"/>
|
416
|
+
<xsd:attribute name="color" type="ST_HexColor" use="optional"/>
|
417
|
+
<xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/>
|
418
|
+
<xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/>
|
419
|
+
<xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/>
|
420
|
+
<xsd:attribute name="sz" type="ST_EighthPointMeasure" use="optional"/>
|
421
|
+
<xsd:attribute name="space" type="ST_PointMeasure" use="optional"/>
|
422
|
+
<xsd:attribute name="shadow" type="s:ST_OnOff" use="optional"/>
|
423
|
+
<xsd:attribute name="frame" type="s:ST_OnOff" use="optional"/>
|
424
|
+
</xsd:complexType>
|
425
|
+
<xsd:simpleType name="ST_Shd">
|
426
|
+
<xsd:restriction base="xsd:string">
|
427
|
+
<xsd:enumeration value="nil"/>
|
428
|
+
<xsd:enumeration value="clear"/>
|
429
|
+
<xsd:enumeration value="solid"/>
|
430
|
+
<xsd:enumeration value="horzStripe"/>
|
431
|
+
<xsd:enumeration value="vertStripe"/>
|
432
|
+
<xsd:enumeration value="reverseDiagStripe"/>
|
433
|
+
<xsd:enumeration value="diagStripe"/>
|
434
|
+
<xsd:enumeration value="horzCross"/>
|
435
|
+
<xsd:enumeration value="diagCross"/>
|
436
|
+
<xsd:enumeration value="thinHorzStripe"/>
|
437
|
+
<xsd:enumeration value="thinVertStripe"/>
|
438
|
+
<xsd:enumeration value="thinReverseDiagStripe"/>
|
439
|
+
<xsd:enumeration value="thinDiagStripe"/>
|
440
|
+
<xsd:enumeration value="thinHorzCross"/>
|
441
|
+
<xsd:enumeration value="thinDiagCross"/>
|
442
|
+
<xsd:enumeration value="pct5"/>
|
443
|
+
<xsd:enumeration value="pct10"/>
|
444
|
+
<xsd:enumeration value="pct12"/>
|
445
|
+
<xsd:enumeration value="pct15"/>
|
446
|
+
<xsd:enumeration value="pct20"/>
|
447
|
+
<xsd:enumeration value="pct25"/>
|
448
|
+
<xsd:enumeration value="pct30"/>
|
449
|
+
<xsd:enumeration value="pct35"/>
|
450
|
+
<xsd:enumeration value="pct37"/>
|
451
|
+
<xsd:enumeration value="pct40"/>
|
452
|
+
<xsd:enumeration value="pct45"/>
|
453
|
+
<xsd:enumeration value="pct50"/>
|
454
|
+
<xsd:enumeration value="pct55"/>
|
455
|
+
<xsd:enumeration value="pct60"/>
|
456
|
+
<xsd:enumeration value="pct62"/>
|
457
|
+
<xsd:enumeration value="pct65"/>
|
458
|
+
<xsd:enumeration value="pct70"/>
|
459
|
+
<xsd:enumeration value="pct75"/>
|
460
|
+
<xsd:enumeration value="pct80"/>
|
461
|
+
<xsd:enumeration value="pct85"/>
|
462
|
+
<xsd:enumeration value="pct87"/>
|
463
|
+
<xsd:enumeration value="pct90"/>
|
464
|
+
<xsd:enumeration value="pct95"/>
|
465
|
+
</xsd:restriction>
|
466
|
+
</xsd:simpleType>
|
467
|
+
<xsd:complexType name="CT_Shd">
|
468
|
+
<xsd:attribute name="val" type="ST_Shd" use="required"/>
|
469
|
+
<xsd:attribute name="color" type="ST_HexColor" use="optional"/>
|
470
|
+
<xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/>
|
471
|
+
<xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/>
|
472
|
+
<xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/>
|
473
|
+
<xsd:attribute name="fill" type="ST_HexColor" use="optional"/>
|
474
|
+
<xsd:attribute name="themeFill" type="ST_ThemeColor" use="optional"/>
|
475
|
+
<xsd:attribute name="themeFillTint" type="ST_UcharHexNumber" use="optional"/>
|
476
|
+
<xsd:attribute name="themeFillShade" type="ST_UcharHexNumber" use="optional"/>
|
477
|
+
</xsd:complexType>
|
478
|
+
<xsd:complexType name="CT_VerticalAlignRun">
|
479
|
+
<xsd:attribute name="val" type="s:ST_VerticalAlignRun" use="required"/>
|
480
|
+
</xsd:complexType>
|
481
|
+
<xsd:complexType name="CT_FitText">
|
482
|
+
<xsd:attribute name="val" type="s:ST_TwipsMeasure" use="required"/>
|
483
|
+
<xsd:attribute name="id" type="ST_DecimalNumber" use="optional"/>
|
484
|
+
</xsd:complexType>
|
485
|
+
<xsd:simpleType name="ST_Em">
|
486
|
+
<xsd:restriction base="xsd:string">
|
487
|
+
<xsd:enumeration value="none"/>
|
488
|
+
<xsd:enumeration value="dot"/>
|
489
|
+
<xsd:enumeration value="comma"/>
|
490
|
+
<xsd:enumeration value="circle"/>
|
491
|
+
<xsd:enumeration value="underDot"/>
|
492
|
+
</xsd:restriction>
|
493
|
+
</xsd:simpleType>
|
494
|
+
<xsd:complexType name="CT_Em">
|
495
|
+
<xsd:attribute name="val" type="ST_Em" use="required"/>
|
496
|
+
</xsd:complexType>
|
497
|
+
<xsd:complexType name="CT_Language">
|
498
|
+
<xsd:attribute name="val" type="s:ST_Lang" use="optional"/>
|
499
|
+
<xsd:attribute name="eastAsia" type="s:ST_Lang" use="optional"/>
|
500
|
+
<xsd:attribute name="bidi" type="s:ST_Lang" use="optional"/>
|
501
|
+
</xsd:complexType>
|
502
|
+
<xsd:simpleType name="ST_CombineBrackets">
|
503
|
+
<xsd:restriction base="xsd:string">
|
504
|
+
<xsd:enumeration value="none"/>
|
505
|
+
<xsd:enumeration value="round"/>
|
506
|
+
<xsd:enumeration value="square"/>
|
507
|
+
<xsd:enumeration value="angle"/>
|
508
|
+
<xsd:enumeration value="curly"/>
|
509
|
+
</xsd:restriction>
|
510
|
+
</xsd:simpleType>
|
511
|
+
<xsd:complexType name="CT_EastAsianLayout">
|
512
|
+
<xsd:attribute name="id" type="ST_DecimalNumber" use="optional"/>
|
513
|
+
<xsd:attribute name="combine" type="s:ST_OnOff" use="optional"/>
|
514
|
+
<xsd:attribute name="combineBrackets" type="ST_CombineBrackets" use="optional"/>
|
515
|
+
<xsd:attribute name="vert" type="s:ST_OnOff" use="optional"/>
|
516
|
+
<xsd:attribute name="vertCompress" type="s:ST_OnOff" use="optional"/>
|
517
|
+
</xsd:complexType>
|
518
|
+
<xsd:simpleType name="ST_HeightRule">
|
519
|
+
<xsd:restriction base="xsd:string">
|
520
|
+
<xsd:enumeration value="auto"/>
|
521
|
+
<xsd:enumeration value="exact"/>
|
522
|
+
<xsd:enumeration value="atLeast"/>
|
523
|
+
</xsd:restriction>
|
524
|
+
</xsd:simpleType>
|
525
|
+
<xsd:simpleType name="ST_Wrap">
|
526
|
+
<xsd:restriction base="xsd:string">
|
527
|
+
<xsd:enumeration value="auto"/>
|
528
|
+
<xsd:enumeration value="notBeside"/>
|
529
|
+
<xsd:enumeration value="around"/>
|
530
|
+
<xsd:enumeration value="tight"/>
|
531
|
+
<xsd:enumeration value="through"/>
|
532
|
+
<xsd:enumeration value="none"/>
|
533
|
+
</xsd:restriction>
|
534
|
+
</xsd:simpleType>
|
535
|
+
<xsd:simpleType name="ST_VAnchor">
|
536
|
+
<xsd:restriction base="xsd:string">
|
537
|
+
<xsd:enumeration value="text"/>
|
538
|
+
<xsd:enumeration value="margin"/>
|
539
|
+
<xsd:enumeration value="page"/>
|
540
|
+
</xsd:restriction>
|
541
|
+
</xsd:simpleType>
|
542
|
+
<xsd:simpleType name="ST_HAnchor">
|
543
|
+
<xsd:restriction base="xsd:string">
|
544
|
+
<xsd:enumeration value="text"/>
|
545
|
+
<xsd:enumeration value="margin"/>
|
546
|
+
<xsd:enumeration value="page"/>
|
547
|
+
</xsd:restriction>
|
548
|
+
</xsd:simpleType>
|
549
|
+
<xsd:simpleType name="ST_DropCap">
|
550
|
+
<xsd:restriction base="xsd:string">
|
551
|
+
<xsd:enumeration value="none"/>
|
552
|
+
<xsd:enumeration value="drop"/>
|
553
|
+
<xsd:enumeration value="margin"/>
|
554
|
+
</xsd:restriction>
|
555
|
+
</xsd:simpleType>
|
556
|
+
<xsd:complexType name="CT_FramePr">
|
557
|
+
<xsd:attribute name="dropCap" type="ST_DropCap" use="optional"/>
|
558
|
+
<xsd:attribute name="lines" type="ST_DecimalNumber" use="optional"/>
|
559
|
+
<xsd:attribute name="w" type="s:ST_TwipsMeasure" use="optional"/>
|
560
|
+
<xsd:attribute name="h" type="s:ST_TwipsMeasure" use="optional"/>
|
561
|
+
<xsd:attribute name="vSpace" type="s:ST_TwipsMeasure" use="optional"/>
|
562
|
+
<xsd:attribute name="hSpace" type="s:ST_TwipsMeasure" use="optional"/>
|
563
|
+
<xsd:attribute name="wrap" type="ST_Wrap" use="optional"/>
|
564
|
+
<xsd:attribute name="hAnchor" type="ST_HAnchor" use="optional"/>
|
565
|
+
<xsd:attribute name="vAnchor" type="ST_VAnchor" use="optional"/>
|
566
|
+
<xsd:attribute name="x" type="ST_SignedTwipsMeasure" use="optional"/>
|
567
|
+
<xsd:attribute name="xAlign" type="s:ST_XAlign" use="optional"/>
|
568
|
+
<xsd:attribute name="y" type="ST_SignedTwipsMeasure" use="optional"/>
|
569
|
+
<xsd:attribute name="yAlign" type="s:ST_YAlign" use="optional"/>
|
570
|
+
<xsd:attribute name="hRule" type="ST_HeightRule" use="optional"/>
|
571
|
+
<xsd:attribute name="anchorLock" type="s:ST_OnOff" use="optional"/>
|
572
|
+
</xsd:complexType>
|
573
|
+
<xsd:simpleType name="ST_TabJc">
|
574
|
+
<xsd:restriction base="xsd:string">
|
575
|
+
<xsd:enumeration value="clear"/>
|
576
|
+
<xsd:enumeration value="start"/>
|
577
|
+
<xsd:enumeration value="center"/>
|
578
|
+
<xsd:enumeration value="end"/>
|
579
|
+
<xsd:enumeration value="decimal"/>
|
580
|
+
<xsd:enumeration value="bar"/>
|
581
|
+
<xsd:enumeration value="num"/>
|
582
|
+
<xsd:enumeration value="left"/>
|
583
|
+
<xsd:enumeration value="right"/>
|
584
|
+
</xsd:restriction>
|
585
|
+
</xsd:simpleType>
|
586
|
+
<xsd:simpleType name="ST_TabTlc">
|
587
|
+
<xsd:restriction base="xsd:string">
|
588
|
+
<xsd:enumeration value="none"/>
|
589
|
+
<xsd:enumeration value="dot"/>
|
590
|
+
<xsd:enumeration value="hyphen"/>
|
591
|
+
<xsd:enumeration value="underscore"/>
|
592
|
+
<xsd:enumeration value="heavy"/>
|
593
|
+
<xsd:enumeration value="middleDot"/>
|
594
|
+
</xsd:restriction>
|
595
|
+
</xsd:simpleType>
|
596
|
+
<xsd:complexType name="CT_TabStop">
|
597
|
+
<xsd:attribute name="val" type="ST_TabJc" use="required"/>
|
598
|
+
<xsd:attribute name="leader" type="ST_TabTlc" use="optional"/>
|
599
|
+
<xsd:attribute name="pos" type="ST_SignedTwipsMeasure" use="required"/>
|
600
|
+
</xsd:complexType>
|
601
|
+
<xsd:simpleType name="ST_LineSpacingRule">
|
602
|
+
<xsd:restriction base="xsd:string">
|
603
|
+
<xsd:enumeration value="auto"/>
|
604
|
+
<xsd:enumeration value="exact"/>
|
605
|
+
<xsd:enumeration value="atLeast"/>
|
606
|
+
</xsd:restriction>
|
607
|
+
</xsd:simpleType>
|
608
|
+
<xsd:complexType name="CT_Spacing">
|
609
|
+
<xsd:attribute name="before" type="s:ST_TwipsMeasure" use="optional"/>
|
610
|
+
<xsd:attribute name="beforeLines" type="ST_DecimalNumber" use="optional"/>
|
611
|
+
<xsd:attribute name="beforeAutospacing" type="s:ST_OnOff" use="optional"/>
|
612
|
+
<xsd:attribute name="after" type="s:ST_TwipsMeasure" use="optional"/>
|
613
|
+
<xsd:attribute name="afterLines" type="ST_DecimalNumber" use="optional"/>
|
614
|
+
<xsd:attribute name="afterAutospacing" type="s:ST_OnOff" use="optional"/>
|
615
|
+
<xsd:attribute name="line" type="ST_SignedTwipsMeasure" use="optional"/>
|
616
|
+
<xsd:attribute name="lineRule" type="ST_LineSpacingRule" use="optional"/>
|
617
|
+
</xsd:complexType>
|
618
|
+
<xsd:complexType name="CT_Ind">
|
619
|
+
<xsd:attribute name="start" type="ST_SignedTwipsMeasure" use="optional"/>
|
620
|
+
<xsd:attribute name="startChars" type="ST_DecimalNumber" use="optional"/>
|
621
|
+
<xsd:attribute name="end" type="ST_SignedTwipsMeasure" use="optional"/>
|
622
|
+
<xsd:attribute name="endChars" type="ST_DecimalNumber" use="optional"/>
|
623
|
+
<xsd:attribute name="left" type="ST_SignedTwipsMeasure" use="optional"/>
|
624
|
+
<xsd:attribute name="leftChars" type="ST_DecimalNumber" use="optional"/>
|
625
|
+
<xsd:attribute name="right" type="ST_SignedTwipsMeasure" use="optional"/>
|
626
|
+
<xsd:attribute name="rightChars" type="ST_DecimalNumber" use="optional"/>
|
627
|
+
<xsd:attribute name="hanging" type="s:ST_TwipsMeasure" use="optional"/>
|
628
|
+
<xsd:attribute name="hangingChars" type="ST_DecimalNumber" use="optional"/>
|
629
|
+
<xsd:attribute name="firstLine" type="s:ST_TwipsMeasure" use="optional"/>
|
630
|
+
<xsd:attribute name="firstLineChars" type="ST_DecimalNumber" use="optional"/>
|
631
|
+
</xsd:complexType>
|
632
|
+
<xsd:simpleType name="ST_Jc">
|
633
|
+
<xsd:restriction base="xsd:string">
|
634
|
+
<xsd:enumeration value="start"/>
|
635
|
+
<xsd:enumeration value="center"/>
|
636
|
+
<xsd:enumeration value="end"/>
|
637
|
+
<xsd:enumeration value="both"/>
|
638
|
+
<xsd:enumeration value="mediumKashida"/>
|
639
|
+
<xsd:enumeration value="distribute"/>
|
640
|
+
<xsd:enumeration value="numTab"/>
|
641
|
+
<xsd:enumeration value="highKashida"/>
|
642
|
+
<xsd:enumeration value="lowKashida"/>
|
643
|
+
<xsd:enumeration value="thaiDistribute"/>
|
644
|
+
<xsd:enumeration value="left"/>
|
645
|
+
<xsd:enumeration value="right"/>
|
646
|
+
</xsd:restriction>
|
647
|
+
</xsd:simpleType>
|
648
|
+
<xsd:simpleType name="ST_JcTable">
|
649
|
+
<xsd:restriction base="xsd:string">
|
650
|
+
<xsd:enumeration value="center"/>
|
651
|
+
<xsd:enumeration value="end"/>
|
652
|
+
<xsd:enumeration value="left"/>
|
653
|
+
<xsd:enumeration value="right"/>
|
654
|
+
<xsd:enumeration value="start"/>
|
655
|
+
</xsd:restriction>
|
656
|
+
</xsd:simpleType>
|
657
|
+
<xsd:complexType name="CT_Jc">
|
658
|
+
<xsd:attribute name="val" type="ST_Jc" use="required"/>
|
659
|
+
</xsd:complexType>
|
660
|
+
<xsd:complexType name="CT_JcTable">
|
661
|
+
<xsd:attribute name="val" type="ST_JcTable" use="required"/>
|
662
|
+
</xsd:complexType>
|
663
|
+
<xsd:simpleType name="ST_View">
|
664
|
+
<xsd:restriction base="xsd:string">
|
665
|
+
<xsd:enumeration value="none"/>
|
666
|
+
<xsd:enumeration value="print"/>
|
667
|
+
<xsd:enumeration value="outline"/>
|
668
|
+
<xsd:enumeration value="masterPages"/>
|
669
|
+
<xsd:enumeration value="normal"/>
|
670
|
+
<xsd:enumeration value="web"/>
|
671
|
+
</xsd:restriction>
|
672
|
+
</xsd:simpleType>
|
673
|
+
<xsd:complexType name="CT_View">
|
674
|
+
<xsd:attribute name="val" type="ST_View" use="required"/>
|
675
|
+
</xsd:complexType>
|
676
|
+
<xsd:simpleType name="ST_Zoom">
|
677
|
+
<xsd:restriction base="xsd:string">
|
678
|
+
<xsd:enumeration value="none"/>
|
679
|
+
<xsd:enumeration value="fullPage"/>
|
680
|
+
<xsd:enumeration value="bestFit"/>
|
681
|
+
<xsd:enumeration value="textFit"/>
|
682
|
+
</xsd:restriction>
|
683
|
+
</xsd:simpleType>
|
684
|
+
<xsd:complexType name="CT_Zoom">
|
685
|
+
<xsd:attribute name="val" type="ST_Zoom" use="optional"/>
|
686
|
+
<xsd:attribute name="percent" type="ST_DecimalNumberOrPercent" use="required"/>
|
687
|
+
</xsd:complexType>
|
688
|
+
<xsd:complexType name="CT_WritingStyle">
|
689
|
+
<xsd:attribute name="lang" type="s:ST_Lang" use="required"/>
|
690
|
+
<xsd:attribute name="vendorID" type="s:ST_String" use="required"/>
|
691
|
+
<xsd:attribute name="dllVersion" type="s:ST_String" use="required"/>
|
692
|
+
<xsd:attribute name="nlCheck" type="s:ST_OnOff" use="optional"/>
|
693
|
+
<xsd:attribute name="checkStyle" type="s:ST_OnOff" use="required"/>
|
694
|
+
<xsd:attribute name="appName" type="s:ST_String" use="required"/>
|
695
|
+
</xsd:complexType>
|
696
|
+
<xsd:simpleType name="ST_Proof">
|
697
|
+
<xsd:restriction base="xsd:string">
|
698
|
+
<xsd:enumeration value="clean"/>
|
699
|
+
<xsd:enumeration value="dirty"/>
|
700
|
+
</xsd:restriction>
|
701
|
+
</xsd:simpleType>
|
702
|
+
<xsd:complexType name="CT_Proof">
|
703
|
+
<xsd:attribute name="spelling" type="ST_Proof" use="optional"/>
|
704
|
+
<xsd:attribute name="grammar" type="ST_Proof" use="optional"/>
|
705
|
+
</xsd:complexType>
|
706
|
+
<xsd:simpleType name="ST_DocType">
|
707
|
+
<xsd:restriction base="xsd:string"/>
|
708
|
+
</xsd:simpleType>
|
709
|
+
<xsd:complexType name="CT_DocType">
|
710
|
+
<xsd:attribute name="val" type="ST_DocType" use="required"/>
|
711
|
+
</xsd:complexType>
|
712
|
+
<xsd:simpleType name="ST_DocProtect">
|
713
|
+
<xsd:restriction base="xsd:string">
|
714
|
+
<xsd:enumeration value="none"/>
|
715
|
+
<xsd:enumeration value="readOnly"/>
|
716
|
+
<xsd:enumeration value="comments"/>
|
717
|
+
<xsd:enumeration value="trackedChanges"/>
|
718
|
+
<xsd:enumeration value="forms"/>
|
719
|
+
</xsd:restriction>
|
720
|
+
</xsd:simpleType>
|
721
|
+
<xsd:attributeGroup name="AG_Password">
|
722
|
+
<xsd:attribute name="algorithmName" type="s:ST_String" use="optional"/>
|
723
|
+
<xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/>
|
724
|
+
<xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/>
|
725
|
+
<xsd:attribute name="spinCount" type="ST_DecimalNumber" use="optional"/>
|
726
|
+
</xsd:attributeGroup>
|
727
|
+
<xsd:attributeGroup name="AG_TransitionalPassword">
|
728
|
+
<xsd:attribute name="cryptProviderType" type="s:ST_CryptProv"/>
|
729
|
+
<xsd:attribute name="cryptAlgorithmClass" type="s:ST_AlgClass"/>
|
730
|
+
<xsd:attribute name="cryptAlgorithmType" type="s:ST_AlgType"/>
|
731
|
+
<xsd:attribute name="cryptAlgorithmSid" type="ST_DecimalNumber"/>
|
732
|
+
<xsd:attribute name="cryptSpinCount" type="ST_DecimalNumber"/>
|
733
|
+
<xsd:attribute name="cryptProvider" type="s:ST_String"/>
|
734
|
+
<xsd:attribute name="algIdExt" type="ST_LongHexNumber"/>
|
735
|
+
<xsd:attribute name="algIdExtSource" type="s:ST_String"/>
|
736
|
+
<xsd:attribute name="cryptProviderTypeExt" type="ST_LongHexNumber"/>
|
737
|
+
<xsd:attribute name="cryptProviderTypeExtSource" type="s:ST_String"/>
|
738
|
+
<xsd:attribute name="hash" type="xsd:base64Binary"/>
|
739
|
+
<xsd:attribute name="salt" type="xsd:base64Binary"/>
|
740
|
+
</xsd:attributeGroup>
|
741
|
+
<xsd:complexType name="CT_DocProtect">
|
742
|
+
<xsd:attribute name="edit" type="ST_DocProtect" use="optional"/>
|
743
|
+
<xsd:attribute name="formatting" type="s:ST_OnOff" use="optional"/>
|
744
|
+
<xsd:attribute name="enforcement" type="s:ST_OnOff"/>
|
745
|
+
<xsd:attributeGroup ref="AG_Password"/>
|
746
|
+
<xsd:attributeGroup ref="AG_TransitionalPassword"/>
|
747
|
+
</xsd:complexType>
|
748
|
+
<xsd:simpleType name="ST_MailMergeDocType">
|
749
|
+
<xsd:restriction base="xsd:string">
|
750
|
+
<xsd:enumeration value="catalog"/>
|
751
|
+
<xsd:enumeration value="envelopes"/>
|
752
|
+
<xsd:enumeration value="mailingLabels"/>
|
753
|
+
<xsd:enumeration value="formLetters"/>
|
754
|
+
<xsd:enumeration value="email"/>
|
755
|
+
<xsd:enumeration value="fax"/>
|
756
|
+
</xsd:restriction>
|
757
|
+
</xsd:simpleType>
|
758
|
+
<xsd:complexType name="CT_MailMergeDocType">
|
759
|
+
<xsd:attribute name="val" type="ST_MailMergeDocType" use="required"/>
|
760
|
+
</xsd:complexType>
|
761
|
+
<xsd:simpleType name="ST_MailMergeDataType">
|
762
|
+
<xsd:restriction base="xsd:string"/>
|
763
|
+
</xsd:simpleType>
|
764
|
+
<xsd:complexType name="CT_MailMergeDataType">
|
765
|
+
<xsd:attribute name="val" type="ST_MailMergeDataType" use="required"/>
|
766
|
+
</xsd:complexType>
|
767
|
+
<xsd:simpleType name="ST_MailMergeDest">
|
768
|
+
<xsd:restriction base="xsd:string">
|
769
|
+
<xsd:enumeration value="newDocument"/>
|
770
|
+
<xsd:enumeration value="printer"/>
|
771
|
+
<xsd:enumeration value="email"/>
|
772
|
+
<xsd:enumeration value="fax"/>
|
773
|
+
</xsd:restriction>
|
774
|
+
</xsd:simpleType>
|
775
|
+
<xsd:complexType name="CT_MailMergeDest">
|
776
|
+
<xsd:attribute name="val" type="ST_MailMergeDest" use="required"/>
|
777
|
+
</xsd:complexType>
|
778
|
+
<xsd:simpleType name="ST_MailMergeOdsoFMDFieldType">
|
779
|
+
<xsd:restriction base="xsd:string">
|
780
|
+
<xsd:enumeration value="null"/>
|
781
|
+
<xsd:enumeration value="dbColumn"/>
|
782
|
+
</xsd:restriction>
|
783
|
+
</xsd:simpleType>
|
784
|
+
<xsd:complexType name="CT_MailMergeOdsoFMDFieldType">
|
785
|
+
<xsd:attribute name="val" type="ST_MailMergeOdsoFMDFieldType" use="required"/>
|
786
|
+
</xsd:complexType>
|
787
|
+
<xsd:complexType name="CT_TrackChangesView">
|
788
|
+
<xsd:attribute name="markup" type="s:ST_OnOff" use="optional"/>
|
789
|
+
<xsd:attribute name="comments" type="s:ST_OnOff" use="optional"/>
|
790
|
+
<xsd:attribute name="insDel" type="s:ST_OnOff" use="optional"/>
|
791
|
+
<xsd:attribute name="formatting" type="s:ST_OnOff" use="optional"/>
|
792
|
+
<xsd:attribute name="inkAnnotations" type="s:ST_OnOff" use="optional"/>
|
793
|
+
</xsd:complexType>
|
794
|
+
<xsd:complexType name="CT_Kinsoku">
|
795
|
+
<xsd:attribute name="lang" type="s:ST_Lang" use="required"/>
|
796
|
+
<xsd:attribute name="val" type="s:ST_String" use="required"/>
|
797
|
+
</xsd:complexType>
|
798
|
+
<xsd:simpleType name="ST_TextDirection">
|
799
|
+
<xsd:restriction base="xsd:string">
|
800
|
+
<xsd:enumeration value="tb"/>
|
801
|
+
<xsd:enumeration value="rl"/>
|
802
|
+
<xsd:enumeration value="lr"/>
|
803
|
+
<xsd:enumeration value="tbV"/>
|
804
|
+
<xsd:enumeration value="rlV"/>
|
805
|
+
<xsd:enumeration value="lrV"/>
|
806
|
+
<xsd:enumeration value="btLr"/>
|
807
|
+
<xsd:enumeration value="lrTb"/>
|
808
|
+
<xsd:enumeration value="lrTbV"/>
|
809
|
+
<xsd:enumeration value="tbLrV"/>
|
810
|
+
<xsd:enumeration value="tbRl"/>
|
811
|
+
<xsd:enumeration value="tbRlV"/>
|
812
|
+
</xsd:restriction>
|
813
|
+
</xsd:simpleType>
|
814
|
+
<xsd:complexType name="CT_TextDirection">
|
815
|
+
<xsd:attribute name="val" type="ST_TextDirection" use="required"/>
|
816
|
+
</xsd:complexType>
|
817
|
+
<xsd:simpleType name="ST_TextAlignment">
|
818
|
+
<xsd:restriction base="xsd:string">
|
819
|
+
<xsd:enumeration value="top"/>
|
820
|
+
<xsd:enumeration value="center"/>
|
821
|
+
<xsd:enumeration value="baseline"/>
|
822
|
+
<xsd:enumeration value="bottom"/>
|
823
|
+
<xsd:enumeration value="auto"/>
|
824
|
+
</xsd:restriction>
|
825
|
+
</xsd:simpleType>
|
826
|
+
<xsd:complexType name="CT_TextAlignment">
|
827
|
+
<xsd:attribute name="val" type="ST_TextAlignment" use="required"/>
|
828
|
+
</xsd:complexType>
|
829
|
+
<xsd:simpleType name="ST_DisplacedByCustomXml">
|
830
|
+
<xsd:restriction base="xsd:string">
|
831
|
+
<xsd:enumeration value="next"/>
|
832
|
+
<xsd:enumeration value="prev"/>
|
833
|
+
</xsd:restriction>
|
834
|
+
</xsd:simpleType>
|
835
|
+
<xsd:simpleType name="ST_AnnotationVMerge">
|
836
|
+
<xsd:restriction base="xsd:string">
|
837
|
+
<xsd:enumeration value="cont"/>
|
838
|
+
<xsd:enumeration value="rest"/>
|
839
|
+
</xsd:restriction>
|
840
|
+
</xsd:simpleType>
|
841
|
+
<xsd:complexType name="CT_Markup">
|
842
|
+
<xsd:attribute name="id" type="ST_DecimalNumber" use="required"/>
|
843
|
+
</xsd:complexType>
|
844
|
+
<xsd:complexType name="CT_TrackChange">
|
845
|
+
<xsd:complexContent>
|
846
|
+
<xsd:extension base="CT_Markup">
|
847
|
+
<xsd:attribute name="author" type="s:ST_String" use="required"/>
|
848
|
+
<xsd:attribute name="date" type="ST_DateTime" use="optional"/>
|
849
|
+
</xsd:extension>
|
850
|
+
</xsd:complexContent>
|
851
|
+
</xsd:complexType>
|
852
|
+
<xsd:complexType name="CT_CellMergeTrackChange">
|
853
|
+
<xsd:complexContent>
|
854
|
+
<xsd:extension base="CT_TrackChange">
|
855
|
+
<xsd:attribute name="vMerge" type="ST_AnnotationVMerge" use="optional"/>
|
856
|
+
<xsd:attribute name="vMergeOrig" type="ST_AnnotationVMerge" use="optional"/>
|
857
|
+
</xsd:extension>
|
858
|
+
</xsd:complexContent>
|
859
|
+
</xsd:complexType>
|
860
|
+
<xsd:complexType name="CT_TrackChangeRange">
|
861
|
+
<xsd:complexContent>
|
862
|
+
<xsd:extension base="CT_TrackChange">
|
863
|
+
<xsd:attribute name="displacedByCustomXml" type="ST_DisplacedByCustomXml" use="optional"/>
|
864
|
+
</xsd:extension>
|
865
|
+
</xsd:complexContent>
|
866
|
+
</xsd:complexType>
|
867
|
+
<xsd:complexType name="CT_MarkupRange">
|
868
|
+
<xsd:complexContent>
|
869
|
+
<xsd:extension base="CT_Markup">
|
870
|
+
<xsd:attribute name="displacedByCustomXml" type="ST_DisplacedByCustomXml" use="optional"/>
|
871
|
+
</xsd:extension>
|
872
|
+
</xsd:complexContent>
|
873
|
+
</xsd:complexType>
|
874
|
+
<xsd:complexType name="CT_BookmarkRange">
|
875
|
+
<xsd:complexContent>
|
876
|
+
<xsd:extension base="CT_MarkupRange">
|
877
|
+
<xsd:attribute name="colFirst" type="ST_DecimalNumber" use="optional"/>
|
878
|
+
<xsd:attribute name="colLast" type="ST_DecimalNumber" use="optional"/>
|
879
|
+
</xsd:extension>
|
880
|
+
</xsd:complexContent>
|
881
|
+
</xsd:complexType>
|
882
|
+
<xsd:complexType name="CT_Bookmark">
|
883
|
+
<xsd:complexContent>
|
884
|
+
<xsd:extension base="CT_BookmarkRange">
|
885
|
+
<xsd:attribute name="name" type="s:ST_String" use="required"/>
|
886
|
+
</xsd:extension>
|
887
|
+
</xsd:complexContent>
|
888
|
+
</xsd:complexType>
|
889
|
+
<xsd:complexType name="CT_MoveBookmark">
|
890
|
+
<xsd:complexContent>
|
891
|
+
<xsd:extension base="CT_Bookmark">
|
892
|
+
<xsd:attribute name="author" type="s:ST_String" use="required"/>
|
893
|
+
<xsd:attribute name="date" type="ST_DateTime" use="required"/>
|
894
|
+
</xsd:extension>
|
895
|
+
</xsd:complexContent>
|
896
|
+
</xsd:complexType>
|
897
|
+
<xsd:complexType name="CT_Comment">
|
898
|
+
<xsd:complexContent>
|
899
|
+
<xsd:extension base="CT_TrackChange">
|
900
|
+
<xsd:sequence>
|
901
|
+
<xsd:group ref="EG_BlockLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
902
|
+
</xsd:sequence>
|
903
|
+
<xsd:attribute name="initials" type="s:ST_String" use="optional"/>
|
904
|
+
</xsd:extension>
|
905
|
+
</xsd:complexContent>
|
906
|
+
</xsd:complexType>
|
907
|
+
<xsd:complexType name="CT_TrackChangeNumbering">
|
908
|
+
<xsd:complexContent>
|
909
|
+
<xsd:extension base="CT_TrackChange">
|
910
|
+
<xsd:attribute name="original" type="s:ST_String" use="optional"/>
|
911
|
+
</xsd:extension>
|
912
|
+
</xsd:complexContent>
|
913
|
+
</xsd:complexType>
|
914
|
+
<xsd:complexType name="CT_TblPrExChange">
|
915
|
+
<xsd:complexContent>
|
916
|
+
<xsd:extension base="CT_TrackChange">
|
917
|
+
<xsd:sequence>
|
918
|
+
<xsd:element name="tblPrEx" type="CT_TblPrExBase" minOccurs="1"/>
|
919
|
+
</xsd:sequence>
|
920
|
+
</xsd:extension>
|
921
|
+
</xsd:complexContent>
|
922
|
+
</xsd:complexType>
|
923
|
+
<xsd:complexType name="CT_TcPrChange">
|
924
|
+
<xsd:complexContent>
|
925
|
+
<xsd:extension base="CT_TrackChange">
|
926
|
+
<xsd:sequence>
|
927
|
+
<xsd:element name="tcPr" type="CT_TcPrInner" minOccurs="1"/>
|
928
|
+
</xsd:sequence>
|
929
|
+
</xsd:extension>
|
930
|
+
</xsd:complexContent>
|
931
|
+
</xsd:complexType>
|
932
|
+
<xsd:complexType name="CT_TrPrChange">
|
933
|
+
<xsd:complexContent>
|
934
|
+
<xsd:extension base="CT_TrackChange">
|
935
|
+
<xsd:sequence>
|
936
|
+
<xsd:element name="trPr" type="CT_TrPrBase" minOccurs="1"/>
|
937
|
+
</xsd:sequence>
|
938
|
+
</xsd:extension>
|
939
|
+
</xsd:complexContent>
|
940
|
+
</xsd:complexType>
|
941
|
+
<xsd:complexType name="CT_TblGridChange">
|
942
|
+
<xsd:complexContent>
|
943
|
+
<xsd:extension base="CT_Markup">
|
944
|
+
<xsd:sequence>
|
945
|
+
<xsd:element name="tblGrid" type="CT_TblGridBase"/>
|
946
|
+
</xsd:sequence>
|
947
|
+
</xsd:extension>
|
948
|
+
</xsd:complexContent>
|
949
|
+
</xsd:complexType>
|
950
|
+
<xsd:complexType name="CT_TblPrChange">
|
951
|
+
<xsd:complexContent>
|
952
|
+
<xsd:extension base="CT_TrackChange">
|
953
|
+
<xsd:sequence>
|
954
|
+
<xsd:element name="tblPr" type="CT_TblPrBase"/>
|
955
|
+
</xsd:sequence>
|
956
|
+
</xsd:extension>
|
957
|
+
</xsd:complexContent>
|
958
|
+
</xsd:complexType>
|
959
|
+
<xsd:complexType name="CT_SectPrChange">
|
960
|
+
<xsd:complexContent>
|
961
|
+
<xsd:extension base="CT_TrackChange">
|
962
|
+
<xsd:sequence>
|
963
|
+
<xsd:element name="sectPr" type="CT_SectPrBase" minOccurs="0"/>
|
964
|
+
</xsd:sequence>
|
965
|
+
</xsd:extension>
|
966
|
+
</xsd:complexContent>
|
967
|
+
</xsd:complexType>
|
968
|
+
<xsd:complexType name="CT_PPrChange">
|
969
|
+
<xsd:complexContent>
|
970
|
+
<xsd:extension base="CT_TrackChange">
|
971
|
+
<xsd:sequence>
|
972
|
+
<xsd:element name="pPr" type="CT_PPrBase" minOccurs="1"/>
|
973
|
+
</xsd:sequence>
|
974
|
+
</xsd:extension>
|
975
|
+
</xsd:complexContent>
|
976
|
+
</xsd:complexType>
|
977
|
+
<xsd:complexType name="CT_RPrChange">
|
978
|
+
<xsd:complexContent>
|
979
|
+
<xsd:extension base="CT_TrackChange">
|
980
|
+
<xsd:sequence>
|
981
|
+
<xsd:element name="rPr" type="CT_RPrOriginal" minOccurs="1"/>
|
982
|
+
</xsd:sequence>
|
983
|
+
</xsd:extension>
|
984
|
+
</xsd:complexContent>
|
985
|
+
</xsd:complexType>
|
986
|
+
<xsd:complexType name="CT_ParaRPrChange">
|
987
|
+
<xsd:complexContent>
|
988
|
+
<xsd:extension base="CT_TrackChange">
|
989
|
+
<xsd:sequence>
|
990
|
+
<xsd:element name="rPr" type="CT_ParaRPrOriginal" minOccurs="1"/>
|
991
|
+
</xsd:sequence>
|
992
|
+
</xsd:extension>
|
993
|
+
</xsd:complexContent>
|
994
|
+
</xsd:complexType>
|
995
|
+
<xsd:complexType name="CT_RunTrackChange">
|
996
|
+
<xsd:complexContent>
|
997
|
+
<xsd:extension base="CT_TrackChange">
|
998
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
999
|
+
<xsd:group ref="EG_ContentRunContent"/>
|
1000
|
+
<xsd:group ref="m:EG_OMathMathElements"/>
|
1001
|
+
</xsd:choice>
|
1002
|
+
</xsd:extension>
|
1003
|
+
</xsd:complexContent>
|
1004
|
+
</xsd:complexType>
|
1005
|
+
<xsd:group name="EG_PContentMath">
|
1006
|
+
<xsd:choice>
|
1007
|
+
<xsd:group ref="EG_PContentBase" minOccurs="0" maxOccurs="unbounded"/>
|
1008
|
+
<xsd:group ref="EG_ContentRunContentBase" minOccurs="0" maxOccurs="unbounded"/>
|
1009
|
+
</xsd:choice>
|
1010
|
+
</xsd:group>
|
1011
|
+
<xsd:group name="EG_PContentBase">
|
1012
|
+
<xsd:choice>
|
1013
|
+
<xsd:element name="customXml" type="CT_CustomXmlRun"/>
|
1014
|
+
<xsd:element name="fldSimple" type="CT_SimpleField" minOccurs="0" maxOccurs="unbounded"/>
|
1015
|
+
<xsd:element name="hyperlink" type="CT_Hyperlink"/>
|
1016
|
+
</xsd:choice>
|
1017
|
+
</xsd:group>
|
1018
|
+
<xsd:group name="EG_ContentRunContentBase">
|
1019
|
+
<xsd:choice>
|
1020
|
+
<xsd:element name="smartTag" type="CT_SmartTagRun"/>
|
1021
|
+
<xsd:element name="sdt" type="CT_SdtRun"/>
|
1022
|
+
<xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
1023
|
+
</xsd:choice>
|
1024
|
+
</xsd:group>
|
1025
|
+
<xsd:group name="EG_CellMarkupElements">
|
1026
|
+
<xsd:choice>
|
1027
|
+
<xsd:element name="cellIns" type="CT_TrackChange" minOccurs="0"/>
|
1028
|
+
<xsd:element name="cellDel" type="CT_TrackChange" minOccurs="0"/>
|
1029
|
+
<xsd:element name="cellMerge" type="CT_CellMergeTrackChange" minOccurs="0"/>
|
1030
|
+
</xsd:choice>
|
1031
|
+
</xsd:group>
|
1032
|
+
<xsd:group name="EG_RangeMarkupElements">
|
1033
|
+
<xsd:choice>
|
1034
|
+
<xsd:element name="bookmarkStart" type="CT_Bookmark"/>
|
1035
|
+
<xsd:element name="bookmarkEnd" type="CT_MarkupRange"/>
|
1036
|
+
<xsd:element name="moveFromRangeStart" type="CT_MoveBookmark"/>
|
1037
|
+
<xsd:element name="moveFromRangeEnd" type="CT_MarkupRange"/>
|
1038
|
+
<xsd:element name="moveToRangeStart" type="CT_MoveBookmark"/>
|
1039
|
+
<xsd:element name="moveToRangeEnd" type="CT_MarkupRange"/>
|
1040
|
+
<xsd:element name="commentRangeStart" type="CT_MarkupRange"/>
|
1041
|
+
<xsd:element name="commentRangeEnd" type="CT_MarkupRange"/>
|
1042
|
+
<xsd:element name="customXmlInsRangeStart" type="CT_TrackChange"/>
|
1043
|
+
<xsd:element name="customXmlInsRangeEnd" type="CT_Markup"/>
|
1044
|
+
<xsd:element name="customXmlDelRangeStart" type="CT_TrackChange"/>
|
1045
|
+
<xsd:element name="customXmlDelRangeEnd" type="CT_Markup"/>
|
1046
|
+
<xsd:element name="customXmlMoveFromRangeStart" type="CT_TrackChange"/>
|
1047
|
+
<xsd:element name="customXmlMoveFromRangeEnd" type="CT_Markup"/>
|
1048
|
+
<xsd:element name="customXmlMoveToRangeStart" type="CT_TrackChange"/>
|
1049
|
+
<xsd:element name="customXmlMoveToRangeEnd" type="CT_Markup"/>
|
1050
|
+
</xsd:choice>
|
1051
|
+
</xsd:group>
|
1052
|
+
<xsd:complexType name="CT_NumPr">
|
1053
|
+
<xsd:sequence>
|
1054
|
+
<xsd:element name="ilvl" type="CT_DecimalNumber" minOccurs="0"/>
|
1055
|
+
<xsd:element name="numId" type="CT_DecimalNumber" minOccurs="0"/>
|
1056
|
+
<xsd:element name="numberingChange" type="CT_TrackChangeNumbering" minOccurs="0"/>
|
1057
|
+
<xsd:element name="ins" type="CT_TrackChange" minOccurs="0"/>
|
1058
|
+
</xsd:sequence>
|
1059
|
+
</xsd:complexType>
|
1060
|
+
<xsd:complexType name="CT_PBdr">
|
1061
|
+
<xsd:sequence>
|
1062
|
+
<xsd:element name="top" type="CT_Border" minOccurs="0"/>
|
1063
|
+
<xsd:element name="left" type="CT_Border" minOccurs="0"/>
|
1064
|
+
<xsd:element name="bottom" type="CT_Border" minOccurs="0"/>
|
1065
|
+
<xsd:element name="right" type="CT_Border" minOccurs="0"/>
|
1066
|
+
<xsd:element name="between" type="CT_Border" minOccurs="0"/>
|
1067
|
+
<xsd:element name="bar" type="CT_Border" minOccurs="0"/>
|
1068
|
+
</xsd:sequence>
|
1069
|
+
</xsd:complexType>
|
1070
|
+
<xsd:complexType name="CT_Tabs">
|
1071
|
+
<xsd:sequence>
|
1072
|
+
<xsd:element name="tab" type="CT_TabStop" minOccurs="1" maxOccurs="unbounded"/>
|
1073
|
+
</xsd:sequence>
|
1074
|
+
</xsd:complexType>
|
1075
|
+
<xsd:simpleType name="ST_TextboxTightWrap">
|
1076
|
+
<xsd:restriction base="xsd:string">
|
1077
|
+
<xsd:enumeration value="none"/>
|
1078
|
+
<xsd:enumeration value="allLines"/>
|
1079
|
+
<xsd:enumeration value="firstAndLastLine"/>
|
1080
|
+
<xsd:enumeration value="firstLineOnly"/>
|
1081
|
+
<xsd:enumeration value="lastLineOnly"/>
|
1082
|
+
</xsd:restriction>
|
1083
|
+
</xsd:simpleType>
|
1084
|
+
<xsd:complexType name="CT_TextboxTightWrap">
|
1085
|
+
<xsd:attribute name="val" type="ST_TextboxTightWrap" use="required"/>
|
1086
|
+
</xsd:complexType>
|
1087
|
+
<xsd:complexType name="CT_PPr">
|
1088
|
+
<xsd:complexContent>
|
1089
|
+
<xsd:extension base="CT_PPrBase">
|
1090
|
+
<xsd:sequence>
|
1091
|
+
<xsd:element name="rPr" type="CT_ParaRPr" minOccurs="0"/>
|
1092
|
+
<xsd:element name="sectPr" type="CT_SectPr" minOccurs="0"/>
|
1093
|
+
<xsd:element name="pPrChange" type="CT_PPrChange" minOccurs="0"/>
|
1094
|
+
</xsd:sequence>
|
1095
|
+
</xsd:extension>
|
1096
|
+
</xsd:complexContent>
|
1097
|
+
</xsd:complexType>
|
1098
|
+
<xsd:complexType name="CT_PPrBase">
|
1099
|
+
<xsd:sequence>
|
1100
|
+
<xsd:element name="pStyle" type="CT_String" minOccurs="0"/>
|
1101
|
+
<xsd:element name="keepNext" type="CT_OnOff" minOccurs="0"/>
|
1102
|
+
<xsd:element name="keepLines" type="CT_OnOff" minOccurs="0"/>
|
1103
|
+
<xsd:element name="pageBreakBefore" type="CT_OnOff" minOccurs="0"/>
|
1104
|
+
<xsd:element name="framePr" type="CT_FramePr" minOccurs="0"/>
|
1105
|
+
<xsd:element name="widowControl" type="CT_OnOff" minOccurs="0"/>
|
1106
|
+
<xsd:element name="numPr" type="CT_NumPr" minOccurs="0"/>
|
1107
|
+
<xsd:element name="suppressLineNumbers" type="CT_OnOff" minOccurs="0"/>
|
1108
|
+
<xsd:element name="pBdr" type="CT_PBdr" minOccurs="0"/>
|
1109
|
+
<xsd:element name="shd" type="CT_Shd" minOccurs="0"/>
|
1110
|
+
<xsd:element name="tabs" type="CT_Tabs" minOccurs="0"/>
|
1111
|
+
<xsd:element name="suppressAutoHyphens" type="CT_OnOff" minOccurs="0"/>
|
1112
|
+
<xsd:element name="kinsoku" type="CT_OnOff" minOccurs="0"/>
|
1113
|
+
<xsd:element name="wordWrap" type="CT_OnOff" minOccurs="0"/>
|
1114
|
+
<xsd:element name="overflowPunct" type="CT_OnOff" minOccurs="0"/>
|
1115
|
+
<xsd:element name="topLinePunct" type="CT_OnOff" minOccurs="0"/>
|
1116
|
+
<xsd:element name="autoSpaceDE" type="CT_OnOff" minOccurs="0"/>
|
1117
|
+
<xsd:element name="autoSpaceDN" type="CT_OnOff" minOccurs="0"/>
|
1118
|
+
<xsd:element name="bidi" type="CT_OnOff" minOccurs="0"/>
|
1119
|
+
<xsd:element name="adjustRightInd" type="CT_OnOff" minOccurs="0"/>
|
1120
|
+
<xsd:element name="snapToGrid" type="CT_OnOff" minOccurs="0"/>
|
1121
|
+
<xsd:element name="spacing" type="CT_Spacing" minOccurs="0"/>
|
1122
|
+
<xsd:element name="ind" type="CT_Ind" minOccurs="0"/>
|
1123
|
+
<xsd:element name="contextualSpacing" type="CT_OnOff" minOccurs="0"/>
|
1124
|
+
<xsd:element name="mirrorIndents" type="CT_OnOff" minOccurs="0"/>
|
1125
|
+
<xsd:element name="suppressOverlap" type="CT_OnOff" minOccurs="0"/>
|
1126
|
+
<xsd:element name="jc" type="CT_Jc" minOccurs="0"/>
|
1127
|
+
<xsd:element name="textDirection" type="CT_TextDirection" minOccurs="0"/>
|
1128
|
+
<xsd:element name="textAlignment" type="CT_TextAlignment" minOccurs="0"/>
|
1129
|
+
<xsd:element name="textboxTightWrap" type="CT_TextboxTightWrap" minOccurs="0"/>
|
1130
|
+
<xsd:element name="outlineLvl" type="CT_DecimalNumber" minOccurs="0"/>
|
1131
|
+
<xsd:element name="divId" type="CT_DecimalNumber" minOccurs="0"/>
|
1132
|
+
<xsd:element name="cnfStyle" type="CT_Cnf" minOccurs="0" maxOccurs="1"/>
|
1133
|
+
</xsd:sequence>
|
1134
|
+
</xsd:complexType>
|
1135
|
+
<xsd:complexType name="CT_PPrGeneral">
|
1136
|
+
<xsd:complexContent>
|
1137
|
+
<xsd:extension base="CT_PPrBase">
|
1138
|
+
<xsd:sequence>
|
1139
|
+
<xsd:element name="pPrChange" type="CT_PPrChange" minOccurs="0"/>
|
1140
|
+
</xsd:sequence>
|
1141
|
+
</xsd:extension>
|
1142
|
+
</xsd:complexContent>
|
1143
|
+
</xsd:complexType>
|
1144
|
+
<xsd:complexType name="CT_Control">
|
1145
|
+
<xsd:attribute name="name" type="s:ST_String" use="optional"/>
|
1146
|
+
<xsd:attribute name="shapeid" type="s:ST_String" use="optional"/>
|
1147
|
+
<xsd:attribute ref="r:id" use="optional"/>
|
1148
|
+
</xsd:complexType>
|
1149
|
+
<xsd:complexType name="CT_Background">
|
1150
|
+
<xsd:sequence>
|
1151
|
+
<xsd:sequence maxOccurs="unbounded">
|
1152
|
+
<xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:vml" minOccurs="0"
|
1153
|
+
maxOccurs="unbounded"/>
|
1154
|
+
<xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office"
|
1155
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
1156
|
+
</xsd:sequence>
|
1157
|
+
<xsd:element name="drawing" type="CT_Drawing" minOccurs="0"/>
|
1158
|
+
</xsd:sequence>
|
1159
|
+
<xsd:attribute name="color" type="ST_HexColor" use="optional"/>
|
1160
|
+
<xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/>
|
1161
|
+
<xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/>
|
1162
|
+
<xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/>
|
1163
|
+
</xsd:complexType>
|
1164
|
+
<xsd:complexType name="CT_Rel">
|
1165
|
+
<xsd:attribute ref="r:id" use="required"/>
|
1166
|
+
</xsd:complexType>
|
1167
|
+
<xsd:complexType name="CT_Object">
|
1168
|
+
<xsd:sequence>
|
1169
|
+
<xsd:sequence maxOccurs="unbounded">
|
1170
|
+
<xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:vml" minOccurs="0"
|
1171
|
+
maxOccurs="unbounded"/>
|
1172
|
+
<xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office"
|
1173
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
1174
|
+
</xsd:sequence>
|
1175
|
+
<xsd:element name="drawing" type="CT_Drawing" minOccurs="0"/>
|
1176
|
+
<xsd:choice minOccurs="0">
|
1177
|
+
<xsd:element name="control" type="CT_Control"/>
|
1178
|
+
<xsd:element name="objectLink" type="CT_ObjectLink"/>
|
1179
|
+
<xsd:element name="objectEmbed" type="CT_ObjectEmbed"/>
|
1180
|
+
<xsd:element name="movie" type="CT_Rel"/>
|
1181
|
+
</xsd:choice>
|
1182
|
+
</xsd:sequence>
|
1183
|
+
<xsd:attribute name="dxaOrig" type="s:ST_TwipsMeasure" use="optional"/>
|
1184
|
+
<xsd:attribute name="dyaOrig" type="s:ST_TwipsMeasure" use="optional"/>
|
1185
|
+
</xsd:complexType>
|
1186
|
+
<xsd:complexType name="CT_Picture">
|
1187
|
+
<xsd:sequence>
|
1188
|
+
<xsd:sequence maxOccurs="unbounded">
|
1189
|
+
<xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:vml" minOccurs="0"
|
1190
|
+
maxOccurs="unbounded"/>
|
1191
|
+
<xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office"
|
1192
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
1193
|
+
</xsd:sequence>
|
1194
|
+
<xsd:element name="movie" type="CT_Rel" minOccurs="0"/>
|
1195
|
+
<xsd:element name="control" type="CT_Control" minOccurs="0"/>
|
1196
|
+
</xsd:sequence>
|
1197
|
+
</xsd:complexType>
|
1198
|
+
<xsd:complexType name="CT_ObjectEmbed">
|
1199
|
+
<xsd:attribute name="drawAspect" type="ST_ObjectDrawAspect" use="optional"/>
|
1200
|
+
<xsd:attribute ref="r:id" use="required"/>
|
1201
|
+
<xsd:attribute name="progId" type="s:ST_String" use="optional"/>
|
1202
|
+
<xsd:attribute name="shapeId" type="s:ST_String" use="optional"/>
|
1203
|
+
<xsd:attribute name="fieldCodes" type="s:ST_String" use="optional"/>
|
1204
|
+
</xsd:complexType>
|
1205
|
+
<xsd:simpleType name="ST_ObjectDrawAspect">
|
1206
|
+
<xsd:restriction base="xsd:string">
|
1207
|
+
<xsd:enumeration value="content"/>
|
1208
|
+
<xsd:enumeration value="icon"/>
|
1209
|
+
</xsd:restriction>
|
1210
|
+
</xsd:simpleType>
|
1211
|
+
<xsd:complexType name="CT_ObjectLink">
|
1212
|
+
<xsd:complexContent>
|
1213
|
+
<xsd:extension base="CT_ObjectEmbed">
|
1214
|
+
<xsd:attribute name="updateMode" type="ST_ObjectUpdateMode" use="required"/>
|
1215
|
+
<xsd:attribute name="lockedField" type="s:ST_OnOff" use="optional"/>
|
1216
|
+
</xsd:extension>
|
1217
|
+
</xsd:complexContent>
|
1218
|
+
</xsd:complexType>
|
1219
|
+
<xsd:simpleType name="ST_ObjectUpdateMode">
|
1220
|
+
<xsd:restriction base="xsd:string">
|
1221
|
+
<xsd:enumeration value="always"/>
|
1222
|
+
<xsd:enumeration value="onCall"/>
|
1223
|
+
</xsd:restriction>
|
1224
|
+
</xsd:simpleType>
|
1225
|
+
<xsd:complexType name="CT_Drawing">
|
1226
|
+
<xsd:choice minOccurs="1" maxOccurs="unbounded">
|
1227
|
+
<xsd:element ref="wp:anchor" minOccurs="0"/>
|
1228
|
+
<xsd:element ref="wp:inline" minOccurs="0"/>
|
1229
|
+
</xsd:choice>
|
1230
|
+
</xsd:complexType>
|
1231
|
+
<xsd:complexType name="CT_SimpleField">
|
1232
|
+
<xsd:sequence>
|
1233
|
+
<xsd:element name="fldData" type="CT_Text" minOccurs="0" maxOccurs="1"/>
|
1234
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
1235
|
+
</xsd:sequence>
|
1236
|
+
<xsd:attribute name="instr" type="s:ST_String" use="required"/>
|
1237
|
+
<xsd:attribute name="fldLock" type="s:ST_OnOff"/>
|
1238
|
+
<xsd:attribute name="dirty" type="s:ST_OnOff"/>
|
1239
|
+
</xsd:complexType>
|
1240
|
+
<xsd:simpleType name="ST_FldCharType">
|
1241
|
+
<xsd:restriction base="xsd:string">
|
1242
|
+
<xsd:enumeration value="begin"/>
|
1243
|
+
<xsd:enumeration value="separate"/>
|
1244
|
+
<xsd:enumeration value="end"/>
|
1245
|
+
</xsd:restriction>
|
1246
|
+
</xsd:simpleType>
|
1247
|
+
<xsd:simpleType name="ST_InfoTextType">
|
1248
|
+
<xsd:restriction base="xsd:string">
|
1249
|
+
<xsd:enumeration value="text"/>
|
1250
|
+
<xsd:enumeration value="autoText"/>
|
1251
|
+
</xsd:restriction>
|
1252
|
+
</xsd:simpleType>
|
1253
|
+
<xsd:simpleType name="ST_FFHelpTextVal">
|
1254
|
+
<xsd:restriction base="xsd:string">
|
1255
|
+
<xsd:maxLength value="256"/>
|
1256
|
+
</xsd:restriction>
|
1257
|
+
</xsd:simpleType>
|
1258
|
+
<xsd:simpleType name="ST_FFStatusTextVal">
|
1259
|
+
<xsd:restriction base="xsd:string">
|
1260
|
+
<xsd:maxLength value="140"/>
|
1261
|
+
</xsd:restriction>
|
1262
|
+
</xsd:simpleType>
|
1263
|
+
<xsd:simpleType name="ST_FFName">
|
1264
|
+
<xsd:restriction base="xsd:string">
|
1265
|
+
<xsd:maxLength value="65"/>
|
1266
|
+
</xsd:restriction>
|
1267
|
+
</xsd:simpleType>
|
1268
|
+
<xsd:simpleType name="ST_FFTextType">
|
1269
|
+
<xsd:restriction base="xsd:string">
|
1270
|
+
<xsd:enumeration value="regular"/>
|
1271
|
+
<xsd:enumeration value="number"/>
|
1272
|
+
<xsd:enumeration value="date"/>
|
1273
|
+
<xsd:enumeration value="currentTime"/>
|
1274
|
+
<xsd:enumeration value="currentDate"/>
|
1275
|
+
<xsd:enumeration value="calculated"/>
|
1276
|
+
</xsd:restriction>
|
1277
|
+
</xsd:simpleType>
|
1278
|
+
<xsd:complexType name="CT_FFTextType">
|
1279
|
+
<xsd:attribute name="val" type="ST_FFTextType" use="required"/>
|
1280
|
+
</xsd:complexType>
|
1281
|
+
<xsd:complexType name="CT_FFName">
|
1282
|
+
<xsd:attribute name="val" type="ST_FFName"/>
|
1283
|
+
</xsd:complexType>
|
1284
|
+
<xsd:complexType name="CT_FldChar">
|
1285
|
+
<xsd:choice>
|
1286
|
+
<xsd:element name="fldData" type="CT_Text" minOccurs="0" maxOccurs="1"/>
|
1287
|
+
<xsd:element name="ffData" type="CT_FFData" minOccurs="0" maxOccurs="1"/>
|
1288
|
+
<xsd:element name="numberingChange" type="CT_TrackChangeNumbering" minOccurs="0"/>
|
1289
|
+
</xsd:choice>
|
1290
|
+
<xsd:attribute name="fldCharType" type="ST_FldCharType" use="required"/>
|
1291
|
+
<xsd:attribute name="fldLock" type="s:ST_OnOff"/>
|
1292
|
+
<xsd:attribute name="dirty" type="s:ST_OnOff"/>
|
1293
|
+
</xsd:complexType>
|
1294
|
+
<xsd:complexType name="CT_Hyperlink">
|
1295
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
1296
|
+
<xsd:attribute name="tgtFrame" type="s:ST_String" use="optional"/>
|
1297
|
+
<xsd:attribute name="tooltip" type="s:ST_String" use="optional"/>
|
1298
|
+
<xsd:attribute name="docLocation" type="s:ST_String" use="optional"/>
|
1299
|
+
<xsd:attribute name="history" type="s:ST_OnOff" use="optional"/>
|
1300
|
+
<xsd:attribute name="anchor" type="s:ST_String" use="optional"/>
|
1301
|
+
<xsd:attribute ref="r:id"/>
|
1302
|
+
</xsd:complexType>
|
1303
|
+
<xsd:complexType name="CT_FFData">
|
1304
|
+
<xsd:choice maxOccurs="unbounded">
|
1305
|
+
<xsd:element name="name" type="CT_FFName"/>
|
1306
|
+
<xsd:element name="label" type="CT_DecimalNumber" minOccurs="0"/>
|
1307
|
+
<xsd:element name="tabIndex" type="CT_UnsignedDecimalNumber" minOccurs="0"/>
|
1308
|
+
<xsd:element name="enabled" type="CT_OnOff"/>
|
1309
|
+
<xsd:element name="calcOnExit" type="CT_OnOff"/>
|
1310
|
+
<xsd:element name="entryMacro" type="CT_MacroName" minOccurs="0" maxOccurs="1"/>
|
1311
|
+
<xsd:element name="exitMacro" type="CT_MacroName" minOccurs="0" maxOccurs="1"/>
|
1312
|
+
<xsd:element name="helpText" type="CT_FFHelpText" minOccurs="0" maxOccurs="1"/>
|
1313
|
+
<xsd:element name="statusText" type="CT_FFStatusText" minOccurs="0" maxOccurs="1"/>
|
1314
|
+
<xsd:choice>
|
1315
|
+
<xsd:element name="checkBox" type="CT_FFCheckBox"/>
|
1316
|
+
<xsd:element name="ddList" type="CT_FFDDList"/>
|
1317
|
+
<xsd:element name="textInput" type="CT_FFTextInput"/>
|
1318
|
+
</xsd:choice>
|
1319
|
+
</xsd:choice>
|
1320
|
+
</xsd:complexType>
|
1321
|
+
<xsd:complexType name="CT_FFHelpText">
|
1322
|
+
<xsd:attribute name="type" type="ST_InfoTextType"/>
|
1323
|
+
<xsd:attribute name="val" type="ST_FFHelpTextVal"/>
|
1324
|
+
</xsd:complexType>
|
1325
|
+
<xsd:complexType name="CT_FFStatusText">
|
1326
|
+
<xsd:attribute name="type" type="ST_InfoTextType"/>
|
1327
|
+
<xsd:attribute name="val" type="ST_FFStatusTextVal"/>
|
1328
|
+
</xsd:complexType>
|
1329
|
+
<xsd:complexType name="CT_FFCheckBox">
|
1330
|
+
<xsd:sequence>
|
1331
|
+
<xsd:choice>
|
1332
|
+
<xsd:element name="size" type="CT_HpsMeasure"/>
|
1333
|
+
<xsd:element name="sizeAuto" type="CT_OnOff"/>
|
1334
|
+
</xsd:choice>
|
1335
|
+
<xsd:element name="default" type="CT_OnOff" minOccurs="0"/>
|
1336
|
+
<xsd:element name="checked" type="CT_OnOff" minOccurs="0"/>
|
1337
|
+
</xsd:sequence>
|
1338
|
+
</xsd:complexType>
|
1339
|
+
<xsd:complexType name="CT_FFDDList">
|
1340
|
+
<xsd:sequence>
|
1341
|
+
<xsd:element name="result" type="CT_DecimalNumber" minOccurs="0"/>
|
1342
|
+
<xsd:element name="default" type="CT_DecimalNumber" minOccurs="0"/>
|
1343
|
+
<xsd:element name="listEntry" type="CT_String" minOccurs="0" maxOccurs="unbounded"/>
|
1344
|
+
</xsd:sequence>
|
1345
|
+
</xsd:complexType>
|
1346
|
+
<xsd:complexType name="CT_FFTextInput">
|
1347
|
+
<xsd:sequence>
|
1348
|
+
<xsd:element name="type" type="CT_FFTextType" minOccurs="0"/>
|
1349
|
+
<xsd:element name="default" type="CT_String" minOccurs="0"/>
|
1350
|
+
<xsd:element name="maxLength" type="CT_DecimalNumber" minOccurs="0"/>
|
1351
|
+
<xsd:element name="format" type="CT_String" minOccurs="0"/>
|
1352
|
+
</xsd:sequence>
|
1353
|
+
</xsd:complexType>
|
1354
|
+
<xsd:simpleType name="ST_SectionMark">
|
1355
|
+
<xsd:restriction base="xsd:string">
|
1356
|
+
<xsd:enumeration value="nextPage"/>
|
1357
|
+
<xsd:enumeration value="nextColumn"/>
|
1358
|
+
<xsd:enumeration value="continuous"/>
|
1359
|
+
<xsd:enumeration value="evenPage"/>
|
1360
|
+
<xsd:enumeration value="oddPage"/>
|
1361
|
+
</xsd:restriction>
|
1362
|
+
</xsd:simpleType>
|
1363
|
+
<xsd:complexType name="CT_SectType">
|
1364
|
+
<xsd:attribute name="val" type="ST_SectionMark"/>
|
1365
|
+
</xsd:complexType>
|
1366
|
+
<xsd:complexType name="CT_PaperSource">
|
1367
|
+
<xsd:attribute name="first" type="ST_DecimalNumber"/>
|
1368
|
+
<xsd:attribute name="other" type="ST_DecimalNumber"/>
|
1369
|
+
</xsd:complexType>
|
1370
|
+
<xsd:simpleType name="ST_NumberFormat">
|
1371
|
+
<xsd:restriction base="xsd:string">
|
1372
|
+
<xsd:enumeration value="decimal"/>
|
1373
|
+
<xsd:enumeration value="upperRoman"/>
|
1374
|
+
<xsd:enumeration value="lowerRoman"/>
|
1375
|
+
<xsd:enumeration value="upperLetter"/>
|
1376
|
+
<xsd:enumeration value="lowerLetter"/>
|
1377
|
+
<xsd:enumeration value="ordinal"/>
|
1378
|
+
<xsd:enumeration value="cardinalText"/>
|
1379
|
+
<xsd:enumeration value="ordinalText"/>
|
1380
|
+
<xsd:enumeration value="hex"/>
|
1381
|
+
<xsd:enumeration value="chicago"/>
|
1382
|
+
<xsd:enumeration value="ideographDigital"/>
|
1383
|
+
<xsd:enumeration value="japaneseCounting"/>
|
1384
|
+
<xsd:enumeration value="aiueo"/>
|
1385
|
+
<xsd:enumeration value="iroha"/>
|
1386
|
+
<xsd:enumeration value="decimalFullWidth"/>
|
1387
|
+
<xsd:enumeration value="decimalHalfWidth"/>
|
1388
|
+
<xsd:enumeration value="japaneseLegal"/>
|
1389
|
+
<xsd:enumeration value="japaneseDigitalTenThousand"/>
|
1390
|
+
<xsd:enumeration value="decimalEnclosedCircle"/>
|
1391
|
+
<xsd:enumeration value="decimalFullWidth2"/>
|
1392
|
+
<xsd:enumeration value="aiueoFullWidth"/>
|
1393
|
+
<xsd:enumeration value="irohaFullWidth"/>
|
1394
|
+
<xsd:enumeration value="decimalZero"/>
|
1395
|
+
<xsd:enumeration value="bullet"/>
|
1396
|
+
<xsd:enumeration value="ganada"/>
|
1397
|
+
<xsd:enumeration value="chosung"/>
|
1398
|
+
<xsd:enumeration value="decimalEnclosedFullstop"/>
|
1399
|
+
<xsd:enumeration value="decimalEnclosedParen"/>
|
1400
|
+
<xsd:enumeration value="decimalEnclosedCircleChinese"/>
|
1401
|
+
<xsd:enumeration value="ideographEnclosedCircle"/>
|
1402
|
+
<xsd:enumeration value="ideographTraditional"/>
|
1403
|
+
<xsd:enumeration value="ideographZodiac"/>
|
1404
|
+
<xsd:enumeration value="ideographZodiacTraditional"/>
|
1405
|
+
<xsd:enumeration value="taiwaneseCounting"/>
|
1406
|
+
<xsd:enumeration value="ideographLegalTraditional"/>
|
1407
|
+
<xsd:enumeration value="taiwaneseCountingThousand"/>
|
1408
|
+
<xsd:enumeration value="taiwaneseDigital"/>
|
1409
|
+
<xsd:enumeration value="chineseCounting"/>
|
1410
|
+
<xsd:enumeration value="chineseLegalSimplified"/>
|
1411
|
+
<xsd:enumeration value="chineseCountingThousand"/>
|
1412
|
+
<xsd:enumeration value="koreanDigital"/>
|
1413
|
+
<xsd:enumeration value="koreanCounting"/>
|
1414
|
+
<xsd:enumeration value="koreanLegal"/>
|
1415
|
+
<xsd:enumeration value="koreanDigital2"/>
|
1416
|
+
<xsd:enumeration value="vietnameseCounting"/>
|
1417
|
+
<xsd:enumeration value="russianLower"/>
|
1418
|
+
<xsd:enumeration value="russianUpper"/>
|
1419
|
+
<xsd:enumeration value="none"/>
|
1420
|
+
<xsd:enumeration value="numberInDash"/>
|
1421
|
+
<xsd:enumeration value="hebrew1"/>
|
1422
|
+
<xsd:enumeration value="hebrew2"/>
|
1423
|
+
<xsd:enumeration value="arabicAlpha"/>
|
1424
|
+
<xsd:enumeration value="arabicAbjad"/>
|
1425
|
+
<xsd:enumeration value="hindiVowels"/>
|
1426
|
+
<xsd:enumeration value="hindiConsonants"/>
|
1427
|
+
<xsd:enumeration value="hindiNumbers"/>
|
1428
|
+
<xsd:enumeration value="hindiCounting"/>
|
1429
|
+
<xsd:enumeration value="thaiLetters"/>
|
1430
|
+
<xsd:enumeration value="thaiNumbers"/>
|
1431
|
+
<xsd:enumeration value="thaiCounting"/>
|
1432
|
+
<xsd:enumeration value="bahtText"/>
|
1433
|
+
<xsd:enumeration value="dollarText"/>
|
1434
|
+
<xsd:enumeration value="custom"/>
|
1435
|
+
</xsd:restriction>
|
1436
|
+
</xsd:simpleType>
|
1437
|
+
<xsd:simpleType name="ST_PageOrientation">
|
1438
|
+
<xsd:restriction base="xsd:string">
|
1439
|
+
<xsd:enumeration value="portrait"/>
|
1440
|
+
<xsd:enumeration value="landscape"/>
|
1441
|
+
</xsd:restriction>
|
1442
|
+
</xsd:simpleType>
|
1443
|
+
<xsd:complexType name="CT_PageSz">
|
1444
|
+
<xsd:attribute name="w" type="s:ST_TwipsMeasure"/>
|
1445
|
+
<xsd:attribute name="h" type="s:ST_TwipsMeasure"/>
|
1446
|
+
<xsd:attribute name="orient" type="ST_PageOrientation" use="optional"/>
|
1447
|
+
<xsd:attribute name="code" type="ST_DecimalNumber" use="optional"/>
|
1448
|
+
</xsd:complexType>
|
1449
|
+
<xsd:complexType name="CT_PageMar">
|
1450
|
+
<xsd:attribute name="top" type="ST_SignedTwipsMeasure" use="required"/>
|
1451
|
+
<xsd:attribute name="right" type="s:ST_TwipsMeasure" use="required"/>
|
1452
|
+
<xsd:attribute name="bottom" type="ST_SignedTwipsMeasure" use="required"/>
|
1453
|
+
<xsd:attribute name="left" type="s:ST_TwipsMeasure" use="required"/>
|
1454
|
+
<xsd:attribute name="header" type="s:ST_TwipsMeasure" use="required"/>
|
1455
|
+
<xsd:attribute name="footer" type="s:ST_TwipsMeasure" use="required"/>
|
1456
|
+
<xsd:attribute name="gutter" type="s:ST_TwipsMeasure" use="required"/>
|
1457
|
+
</xsd:complexType>
|
1458
|
+
<xsd:simpleType name="ST_PageBorderZOrder">
|
1459
|
+
<xsd:restriction base="xsd:string">
|
1460
|
+
<xsd:enumeration value="front"/>
|
1461
|
+
<xsd:enumeration value="back"/>
|
1462
|
+
</xsd:restriction>
|
1463
|
+
</xsd:simpleType>
|
1464
|
+
<xsd:simpleType name="ST_PageBorderDisplay">
|
1465
|
+
<xsd:restriction base="xsd:string">
|
1466
|
+
<xsd:enumeration value="allPages"/>
|
1467
|
+
<xsd:enumeration value="firstPage"/>
|
1468
|
+
<xsd:enumeration value="notFirstPage"/>
|
1469
|
+
</xsd:restriction>
|
1470
|
+
</xsd:simpleType>
|
1471
|
+
<xsd:simpleType name="ST_PageBorderOffset">
|
1472
|
+
<xsd:restriction base="xsd:string">
|
1473
|
+
<xsd:enumeration value="page"/>
|
1474
|
+
<xsd:enumeration value="text"/>
|
1475
|
+
</xsd:restriction>
|
1476
|
+
</xsd:simpleType>
|
1477
|
+
<xsd:complexType name="CT_PageBorders">
|
1478
|
+
<xsd:sequence>
|
1479
|
+
<xsd:element name="top" type="CT_TopPageBorder" minOccurs="0"/>
|
1480
|
+
<xsd:element name="left" type="CT_PageBorder" minOccurs="0"/>
|
1481
|
+
<xsd:element name="bottom" type="CT_BottomPageBorder" minOccurs="0"/>
|
1482
|
+
<xsd:element name="right" type="CT_PageBorder" minOccurs="0"/>
|
1483
|
+
</xsd:sequence>
|
1484
|
+
<xsd:attribute name="zOrder" type="ST_PageBorderZOrder" use="optional"/>
|
1485
|
+
<xsd:attribute name="display" type="ST_PageBorderDisplay" use="optional"/>
|
1486
|
+
<xsd:attribute name="offsetFrom" type="ST_PageBorderOffset" use="optional"/>
|
1487
|
+
</xsd:complexType>
|
1488
|
+
<xsd:complexType name="CT_PageBorder">
|
1489
|
+
<xsd:complexContent>
|
1490
|
+
<xsd:extension base="CT_Border">
|
1491
|
+
<xsd:attribute ref="r:id" use="optional"/>
|
1492
|
+
</xsd:extension>
|
1493
|
+
</xsd:complexContent>
|
1494
|
+
</xsd:complexType>
|
1495
|
+
<xsd:complexType name="CT_BottomPageBorder">
|
1496
|
+
<xsd:complexContent>
|
1497
|
+
<xsd:extension base="CT_PageBorder">
|
1498
|
+
<xsd:attribute ref="r:bottomLeft" use="optional"/>
|
1499
|
+
<xsd:attribute ref="r:bottomRight" use="optional"/>
|
1500
|
+
</xsd:extension>
|
1501
|
+
</xsd:complexContent>
|
1502
|
+
</xsd:complexType>
|
1503
|
+
<xsd:complexType name="CT_TopPageBorder">
|
1504
|
+
<xsd:complexContent>
|
1505
|
+
<xsd:extension base="CT_PageBorder">
|
1506
|
+
<xsd:attribute ref="r:topLeft" use="optional"/>
|
1507
|
+
<xsd:attribute ref="r:topRight" use="optional"/>
|
1508
|
+
</xsd:extension>
|
1509
|
+
</xsd:complexContent>
|
1510
|
+
</xsd:complexType>
|
1511
|
+
<xsd:simpleType name="ST_ChapterSep">
|
1512
|
+
<xsd:restriction base="xsd:string">
|
1513
|
+
<xsd:enumeration value="hyphen"/>
|
1514
|
+
<xsd:enumeration value="period"/>
|
1515
|
+
<xsd:enumeration value="colon"/>
|
1516
|
+
<xsd:enumeration value="emDash"/>
|
1517
|
+
<xsd:enumeration value="enDash"/>
|
1518
|
+
</xsd:restriction>
|
1519
|
+
</xsd:simpleType>
|
1520
|
+
<xsd:simpleType name="ST_LineNumberRestart">
|
1521
|
+
<xsd:restriction base="xsd:string">
|
1522
|
+
<xsd:enumeration value="newPage"/>
|
1523
|
+
<xsd:enumeration value="newSection"/>
|
1524
|
+
<xsd:enumeration value="continuous"/>
|
1525
|
+
</xsd:restriction>
|
1526
|
+
</xsd:simpleType>
|
1527
|
+
<xsd:complexType name="CT_LineNumber">
|
1528
|
+
<xsd:attribute name="countBy" type="ST_DecimalNumber" use="optional"/>
|
1529
|
+
<xsd:attribute name="start" type="ST_DecimalNumber" use="optional"/>
|
1530
|
+
<xsd:attribute name="distance" type="s:ST_TwipsMeasure" use="optional"/>
|
1531
|
+
<xsd:attribute name="restart" type="ST_LineNumberRestart" use="optional"/>
|
1532
|
+
</xsd:complexType>
|
1533
|
+
<xsd:complexType name="CT_PageNumber">
|
1534
|
+
<xsd:attribute name="fmt" type="ST_NumberFormat" use="optional"/>
|
1535
|
+
<xsd:attribute name="start" type="ST_DecimalNumber" use="optional"/>
|
1536
|
+
<xsd:attribute name="chapStyle" type="ST_DecimalNumber" use="optional"/>
|
1537
|
+
<xsd:attribute name="chapSep" type="ST_ChapterSep" use="optional"/>
|
1538
|
+
</xsd:complexType>
|
1539
|
+
<xsd:complexType name="CT_Column">
|
1540
|
+
<xsd:attribute name="w" type="s:ST_TwipsMeasure" use="optional"/>
|
1541
|
+
<xsd:attribute name="space" type="s:ST_TwipsMeasure" use="optional"/>
|
1542
|
+
</xsd:complexType>
|
1543
|
+
<xsd:complexType name="CT_Columns">
|
1544
|
+
<xsd:sequence minOccurs="0">
|
1545
|
+
<xsd:element name="col" type="CT_Column" maxOccurs="45"/>
|
1546
|
+
</xsd:sequence>
|
1547
|
+
<xsd:attribute name="equalWidth" type="s:ST_OnOff" use="optional"/>
|
1548
|
+
<xsd:attribute name="space" type="s:ST_TwipsMeasure" use="optional"/>
|
1549
|
+
<xsd:attribute name="num" type="ST_DecimalNumber" use="optional"/>
|
1550
|
+
<xsd:attribute name="sep" type="s:ST_OnOff" use="optional"/>
|
1551
|
+
</xsd:complexType>
|
1552
|
+
<xsd:simpleType name="ST_VerticalJc">
|
1553
|
+
<xsd:restriction base="xsd:string">
|
1554
|
+
<xsd:enumeration value="top"/>
|
1555
|
+
<xsd:enumeration value="center"/>
|
1556
|
+
<xsd:enumeration value="both"/>
|
1557
|
+
<xsd:enumeration value="bottom"/>
|
1558
|
+
</xsd:restriction>
|
1559
|
+
</xsd:simpleType>
|
1560
|
+
<xsd:complexType name="CT_VerticalJc">
|
1561
|
+
<xsd:attribute name="val" type="ST_VerticalJc" use="required"/>
|
1562
|
+
</xsd:complexType>
|
1563
|
+
<xsd:simpleType name="ST_DocGrid">
|
1564
|
+
<xsd:restriction base="xsd:string">
|
1565
|
+
<xsd:enumeration value="default"/>
|
1566
|
+
<xsd:enumeration value="lines"/>
|
1567
|
+
<xsd:enumeration value="linesAndChars"/>
|
1568
|
+
<xsd:enumeration value="snapToChars"/>
|
1569
|
+
</xsd:restriction>
|
1570
|
+
</xsd:simpleType>
|
1571
|
+
<xsd:complexType name="CT_DocGrid">
|
1572
|
+
<xsd:attribute name="type" type="ST_DocGrid"/>
|
1573
|
+
<xsd:attribute name="linePitch" type="ST_DecimalNumber"/>
|
1574
|
+
<xsd:attribute name="charSpace" type="ST_DecimalNumber"/>
|
1575
|
+
</xsd:complexType>
|
1576
|
+
<xsd:simpleType name="ST_HdrFtr">
|
1577
|
+
<xsd:restriction base="xsd:string">
|
1578
|
+
<xsd:enumeration value="even"/>
|
1579
|
+
<xsd:enumeration value="default"/>
|
1580
|
+
<xsd:enumeration value="first"/>
|
1581
|
+
</xsd:restriction>
|
1582
|
+
</xsd:simpleType>
|
1583
|
+
<xsd:simpleType name="ST_FtnEdn">
|
1584
|
+
<xsd:restriction base="xsd:string">
|
1585
|
+
<xsd:enumeration value="normal"/>
|
1586
|
+
<xsd:enumeration value="separator"/>
|
1587
|
+
<xsd:enumeration value="continuationSeparator"/>
|
1588
|
+
<xsd:enumeration value="continuationNotice"/>
|
1589
|
+
</xsd:restriction>
|
1590
|
+
</xsd:simpleType>
|
1591
|
+
<xsd:complexType name="CT_HdrFtrRef">
|
1592
|
+
<xsd:complexContent>
|
1593
|
+
<xsd:extension base="CT_Rel">
|
1594
|
+
<xsd:attribute name="type" type="ST_HdrFtr" use="required"/>
|
1595
|
+
</xsd:extension>
|
1596
|
+
</xsd:complexContent>
|
1597
|
+
</xsd:complexType>
|
1598
|
+
<xsd:group name="EG_HdrFtrReferences">
|
1599
|
+
<xsd:choice>
|
1600
|
+
<xsd:element name="headerReference" type="CT_HdrFtrRef" minOccurs="0"/>
|
1601
|
+
<xsd:element name="footerReference" type="CT_HdrFtrRef" minOccurs="0"/>
|
1602
|
+
</xsd:choice>
|
1603
|
+
</xsd:group>
|
1604
|
+
<xsd:complexType name="CT_HdrFtr">
|
1605
|
+
<xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/>
|
1606
|
+
</xsd:complexType>
|
1607
|
+
<xsd:group name="EG_SectPrContents">
|
1608
|
+
<xsd:sequence>
|
1609
|
+
<xsd:element name="footnotePr" type="CT_FtnProps" minOccurs="0"/>
|
1610
|
+
<xsd:element name="endnotePr" type="CT_EdnProps" minOccurs="0"/>
|
1611
|
+
<xsd:element name="type" type="CT_SectType" minOccurs="0"/>
|
1612
|
+
<xsd:element name="pgSz" type="CT_PageSz" minOccurs="0"/>
|
1613
|
+
<xsd:element name="pgMar" type="CT_PageMar" minOccurs="0"/>
|
1614
|
+
<xsd:element name="paperSrc" type="CT_PaperSource" minOccurs="0"/>
|
1615
|
+
<xsd:element name="pgBorders" type="CT_PageBorders" minOccurs="0"/>
|
1616
|
+
<xsd:element name="lnNumType" type="CT_LineNumber" minOccurs="0"/>
|
1617
|
+
<xsd:element name="pgNumType" type="CT_PageNumber" minOccurs="0"/>
|
1618
|
+
<xsd:element name="cols" type="CT_Columns" minOccurs="0"/>
|
1619
|
+
<xsd:element name="formProt" type="CT_OnOff" minOccurs="0"/>
|
1620
|
+
<xsd:element name="vAlign" type="CT_VerticalJc" minOccurs="0"/>
|
1621
|
+
<xsd:element name="noEndnote" type="CT_OnOff" minOccurs="0"/>
|
1622
|
+
<xsd:element name="titlePg" type="CT_OnOff" minOccurs="0"/>
|
1623
|
+
<xsd:element name="textDirection" type="CT_TextDirection" minOccurs="0"/>
|
1624
|
+
<xsd:element name="bidi" type="CT_OnOff" minOccurs="0"/>
|
1625
|
+
<xsd:element name="rtlGutter" type="CT_OnOff" minOccurs="0"/>
|
1626
|
+
<xsd:element name="docGrid" type="CT_DocGrid" minOccurs="0"/>
|
1627
|
+
<xsd:element name="printerSettings" type="CT_Rel" minOccurs="0"/>
|
1628
|
+
</xsd:sequence>
|
1629
|
+
</xsd:group>
|
1630
|
+
<xsd:attributeGroup name="AG_SectPrAttributes">
|
1631
|
+
<xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/>
|
1632
|
+
<xsd:attribute name="rsidDel" type="ST_LongHexNumber"/>
|
1633
|
+
<xsd:attribute name="rsidR" type="ST_LongHexNumber"/>
|
1634
|
+
<xsd:attribute name="rsidSect" type="ST_LongHexNumber"/>
|
1635
|
+
</xsd:attributeGroup>
|
1636
|
+
<xsd:complexType name="CT_SectPrBase">
|
1637
|
+
<xsd:sequence>
|
1638
|
+
<xsd:group ref="EG_SectPrContents" minOccurs="0"/>
|
1639
|
+
</xsd:sequence>
|
1640
|
+
<xsd:attributeGroup ref="AG_SectPrAttributes"/>
|
1641
|
+
</xsd:complexType>
|
1642
|
+
<xsd:complexType name="CT_SectPr">
|
1643
|
+
<xsd:sequence>
|
1644
|
+
<xsd:group ref="EG_HdrFtrReferences" minOccurs="0" maxOccurs="6"/>
|
1645
|
+
<xsd:group ref="EG_SectPrContents" minOccurs="0"/>
|
1646
|
+
<xsd:element name="sectPrChange" type="CT_SectPrChange" minOccurs="0"/>
|
1647
|
+
</xsd:sequence>
|
1648
|
+
<xsd:attributeGroup ref="AG_SectPrAttributes"/>
|
1649
|
+
</xsd:complexType>
|
1650
|
+
<xsd:simpleType name="ST_BrType">
|
1651
|
+
<xsd:restriction base="xsd:string">
|
1652
|
+
<xsd:enumeration value="page"/>
|
1653
|
+
<xsd:enumeration value="column"/>
|
1654
|
+
<xsd:enumeration value="textWrapping"/>
|
1655
|
+
</xsd:restriction>
|
1656
|
+
</xsd:simpleType>
|
1657
|
+
<xsd:simpleType name="ST_BrClear">
|
1658
|
+
<xsd:restriction base="xsd:string">
|
1659
|
+
<xsd:enumeration value="none"/>
|
1660
|
+
<xsd:enumeration value="left"/>
|
1661
|
+
<xsd:enumeration value="right"/>
|
1662
|
+
<xsd:enumeration value="all"/>
|
1663
|
+
</xsd:restriction>
|
1664
|
+
</xsd:simpleType>
|
1665
|
+
<xsd:complexType name="CT_Br">
|
1666
|
+
<xsd:attribute name="type" type="ST_BrType" use="optional"/>
|
1667
|
+
<xsd:attribute name="clear" type="ST_BrClear" use="optional"/>
|
1668
|
+
</xsd:complexType>
|
1669
|
+
<xsd:simpleType name="ST_PTabAlignment">
|
1670
|
+
<xsd:restriction base="xsd:string">
|
1671
|
+
<xsd:enumeration value="left"/>
|
1672
|
+
<xsd:enumeration value="center"/>
|
1673
|
+
<xsd:enumeration value="right"/>
|
1674
|
+
</xsd:restriction>
|
1675
|
+
</xsd:simpleType>
|
1676
|
+
<xsd:simpleType name="ST_PTabRelativeTo">
|
1677
|
+
<xsd:restriction base="xsd:string">
|
1678
|
+
<xsd:enumeration value="margin"/>
|
1679
|
+
<xsd:enumeration value="indent"/>
|
1680
|
+
</xsd:restriction>
|
1681
|
+
</xsd:simpleType>
|
1682
|
+
<xsd:simpleType name="ST_PTabLeader">
|
1683
|
+
<xsd:restriction base="xsd:string">
|
1684
|
+
<xsd:enumeration value="none"/>
|
1685
|
+
<xsd:enumeration value="dot"/>
|
1686
|
+
<xsd:enumeration value="hyphen"/>
|
1687
|
+
<xsd:enumeration value="underscore"/>
|
1688
|
+
<xsd:enumeration value="middleDot"/>
|
1689
|
+
</xsd:restriction>
|
1690
|
+
</xsd:simpleType>
|
1691
|
+
<xsd:complexType name="CT_PTab">
|
1692
|
+
<xsd:attribute name="alignment" type="ST_PTabAlignment" use="required"/>
|
1693
|
+
<xsd:attribute name="relativeTo" type="ST_PTabRelativeTo" use="required"/>
|
1694
|
+
<xsd:attribute name="leader" type="ST_PTabLeader" use="required"/>
|
1695
|
+
</xsd:complexType>
|
1696
|
+
<xsd:complexType name="CT_Sym">
|
1697
|
+
<xsd:attribute name="font" type="s:ST_String"/>
|
1698
|
+
<xsd:attribute name="char" type="ST_ShortHexNumber"/>
|
1699
|
+
</xsd:complexType>
|
1700
|
+
<xsd:simpleType name="ST_ProofErr">
|
1701
|
+
<xsd:restriction base="xsd:string">
|
1702
|
+
<xsd:enumeration value="spellStart"/>
|
1703
|
+
<xsd:enumeration value="spellEnd"/>
|
1704
|
+
<xsd:enumeration value="gramStart"/>
|
1705
|
+
<xsd:enumeration value="gramEnd"/>
|
1706
|
+
</xsd:restriction>
|
1707
|
+
</xsd:simpleType>
|
1708
|
+
<xsd:complexType name="CT_ProofErr">
|
1709
|
+
<xsd:attribute name="type" type="ST_ProofErr" use="required"/>
|
1710
|
+
</xsd:complexType>
|
1711
|
+
<xsd:simpleType name="ST_EdGrp">
|
1712
|
+
<xsd:restriction base="xsd:string">
|
1713
|
+
<xsd:enumeration value="none"/>
|
1714
|
+
<xsd:enumeration value="everyone"/>
|
1715
|
+
<xsd:enumeration value="administrators"/>
|
1716
|
+
<xsd:enumeration value="contributors"/>
|
1717
|
+
<xsd:enumeration value="editors"/>
|
1718
|
+
<xsd:enumeration value="owners"/>
|
1719
|
+
<xsd:enumeration value="current"/>
|
1720
|
+
</xsd:restriction>
|
1721
|
+
</xsd:simpleType>
|
1722
|
+
<xsd:complexType name="CT_Perm">
|
1723
|
+
<xsd:attribute name="id" type="s:ST_String" use="required"/>
|
1724
|
+
<xsd:attribute name="displacedByCustomXml" type="ST_DisplacedByCustomXml" use="optional"/>
|
1725
|
+
</xsd:complexType>
|
1726
|
+
<xsd:complexType name="CT_PermStart">
|
1727
|
+
<xsd:complexContent>
|
1728
|
+
<xsd:extension base="CT_Perm">
|
1729
|
+
<xsd:attribute name="edGrp" type="ST_EdGrp" use="optional"/>
|
1730
|
+
<xsd:attribute name="ed" type="s:ST_String" use="optional"/>
|
1731
|
+
<xsd:attribute name="colFirst" type="ST_DecimalNumber" use="optional"/>
|
1732
|
+
<xsd:attribute name="colLast" type="ST_DecimalNumber" use="optional"/>
|
1733
|
+
</xsd:extension>
|
1734
|
+
</xsd:complexContent>
|
1735
|
+
</xsd:complexType>
|
1736
|
+
<xsd:complexType name="CT_Text">
|
1737
|
+
<xsd:simpleContent>
|
1738
|
+
<xsd:extension base="s:ST_String">
|
1739
|
+
<xsd:attribute ref="xml:space" use="optional"/>
|
1740
|
+
</xsd:extension>
|
1741
|
+
</xsd:simpleContent>
|
1742
|
+
</xsd:complexType>
|
1743
|
+
<xsd:group name="EG_RunInnerContent">
|
1744
|
+
<xsd:choice>
|
1745
|
+
<xsd:element name="br" type="CT_Br"/>
|
1746
|
+
<xsd:element name="t" type="CT_Text"/>
|
1747
|
+
<xsd:element name="contentPart" type="CT_Rel"/>
|
1748
|
+
<xsd:element name="delText" type="CT_Text"/>
|
1749
|
+
<xsd:element name="instrText" type="CT_Text"/>
|
1750
|
+
<xsd:element name="delInstrText" type="CT_Text"/>
|
1751
|
+
<xsd:element name="noBreakHyphen" type="CT_Empty"/>
|
1752
|
+
<xsd:element name="softHyphen" type="CT_Empty" minOccurs="0"/>
|
1753
|
+
<xsd:element name="dayShort" type="CT_Empty" minOccurs="0"/>
|
1754
|
+
<xsd:element name="monthShort" type="CT_Empty" minOccurs="0"/>
|
1755
|
+
<xsd:element name="yearShort" type="CT_Empty" minOccurs="0"/>
|
1756
|
+
<xsd:element name="dayLong" type="CT_Empty" minOccurs="0"/>
|
1757
|
+
<xsd:element name="monthLong" type="CT_Empty" minOccurs="0"/>
|
1758
|
+
<xsd:element name="yearLong" type="CT_Empty" minOccurs="0"/>
|
1759
|
+
<xsd:element name="annotationRef" type="CT_Empty" minOccurs="0"/>
|
1760
|
+
<xsd:element name="footnoteRef" type="CT_Empty" minOccurs="0"/>
|
1761
|
+
<xsd:element name="endnoteRef" type="CT_Empty" minOccurs="0"/>
|
1762
|
+
<xsd:element name="separator" type="CT_Empty" minOccurs="0"/>
|
1763
|
+
<xsd:element name="continuationSeparator" type="CT_Empty" minOccurs="0"/>
|
1764
|
+
<xsd:element name="sym" type="CT_Sym" minOccurs="0"/>
|
1765
|
+
<xsd:element name="pgNum" type="CT_Empty" minOccurs="0"/>
|
1766
|
+
<xsd:element name="cr" type="CT_Empty" minOccurs="0"/>
|
1767
|
+
<xsd:element name="tab" type="CT_Empty" minOccurs="0"/>
|
1768
|
+
<xsd:element name="object" type="CT_Object"/>
|
1769
|
+
<xsd:element name="pict" type="CT_Picture"/>
|
1770
|
+
<xsd:element name="fldChar" type="CT_FldChar"/>
|
1771
|
+
<xsd:element name="ruby" type="CT_Ruby"/>
|
1772
|
+
<xsd:element name="footnoteReference" type="CT_FtnEdnRef"/>
|
1773
|
+
<xsd:element name="endnoteReference" type="CT_FtnEdnRef"/>
|
1774
|
+
<xsd:element name="commentReference" type="CT_Markup"/>
|
1775
|
+
<xsd:element name="drawing" type="CT_Drawing"/>
|
1776
|
+
<xsd:element name="ptab" type="CT_PTab" minOccurs="0"/>
|
1777
|
+
<xsd:element name="lastRenderedPageBreak" type="CT_Empty" minOccurs="0" maxOccurs="1"/>
|
1778
|
+
</xsd:choice>
|
1779
|
+
</xsd:group>
|
1780
|
+
<xsd:complexType name="CT_R">
|
1781
|
+
<xsd:sequence>
|
1782
|
+
<xsd:group ref="EG_RPr" minOccurs="0"/>
|
1783
|
+
<xsd:group ref="EG_RunInnerContent" minOccurs="0" maxOccurs="unbounded"/>
|
1784
|
+
</xsd:sequence>
|
1785
|
+
<xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/>
|
1786
|
+
<xsd:attribute name="rsidDel" type="ST_LongHexNumber"/>
|
1787
|
+
<xsd:attribute name="rsidR" type="ST_LongHexNumber"/>
|
1788
|
+
</xsd:complexType>
|
1789
|
+
<xsd:simpleType name="ST_Hint">
|
1790
|
+
<xsd:restriction base="xsd:string">
|
1791
|
+
<xsd:enumeration value="default"/>
|
1792
|
+
<xsd:enumeration value="eastAsia"/>
|
1793
|
+
<xsd:enumeration value="cs"/>
|
1794
|
+
</xsd:restriction>
|
1795
|
+
</xsd:simpleType>
|
1796
|
+
<xsd:simpleType name="ST_Theme">
|
1797
|
+
<xsd:restriction base="xsd:string">
|
1798
|
+
<xsd:enumeration value="majorEastAsia"/>
|
1799
|
+
<xsd:enumeration value="majorBidi"/>
|
1800
|
+
<xsd:enumeration value="majorAscii"/>
|
1801
|
+
<xsd:enumeration value="majorHAnsi"/>
|
1802
|
+
<xsd:enumeration value="minorEastAsia"/>
|
1803
|
+
<xsd:enumeration value="minorBidi"/>
|
1804
|
+
<xsd:enumeration value="minorAscii"/>
|
1805
|
+
<xsd:enumeration value="minorHAnsi"/>
|
1806
|
+
</xsd:restriction>
|
1807
|
+
</xsd:simpleType>
|
1808
|
+
<xsd:complexType name="CT_Fonts">
|
1809
|
+
<xsd:attribute name="hint" type="ST_Hint"/>
|
1810
|
+
<xsd:attribute name="ascii" type="s:ST_String"/>
|
1811
|
+
<xsd:attribute name="hAnsi" type="s:ST_String"/>
|
1812
|
+
<xsd:attribute name="eastAsia" type="s:ST_String"/>
|
1813
|
+
<xsd:attribute name="cs" type="s:ST_String"/>
|
1814
|
+
<xsd:attribute name="asciiTheme" type="ST_Theme"/>
|
1815
|
+
<xsd:attribute name="hAnsiTheme" type="ST_Theme"/>
|
1816
|
+
<xsd:attribute name="eastAsiaTheme" type="ST_Theme"/>
|
1817
|
+
<xsd:attribute name="cstheme" type="ST_Theme"/>
|
1818
|
+
</xsd:complexType>
|
1819
|
+
<xsd:group name="EG_RPrBase">
|
1820
|
+
<xsd:sequence>
|
1821
|
+
<xsd:element name="rStyle" type="CT_String" minOccurs="0"/>
|
1822
|
+
<xsd:element name="rFonts" type="CT_Fonts" minOccurs="0"/>
|
1823
|
+
<xsd:element name="b" type="CT_OnOff" minOccurs="0"/>
|
1824
|
+
<xsd:element name="bCs" type="CT_OnOff" minOccurs="0"/>
|
1825
|
+
<xsd:element name="i" type="CT_OnOff" minOccurs="0"/>
|
1826
|
+
<xsd:element name="iCs" type="CT_OnOff" minOccurs="0"/>
|
1827
|
+
<xsd:element name="caps" type="CT_OnOff" minOccurs="0"/>
|
1828
|
+
<xsd:element name="smallCaps" type="CT_OnOff" minOccurs="0"/>
|
1829
|
+
<xsd:element name="strike" type="CT_OnOff" minOccurs="0"/>
|
1830
|
+
<xsd:element name="dstrike" type="CT_OnOff" minOccurs="0"/>
|
1831
|
+
<xsd:element name="outline" type="CT_OnOff" minOccurs="0"/>
|
1832
|
+
<xsd:element name="shadow" type="CT_OnOff" minOccurs="0"/>
|
1833
|
+
<xsd:element name="emboss" type="CT_OnOff" minOccurs="0"/>
|
1834
|
+
<xsd:element name="imprint" type="CT_OnOff" minOccurs="0"/>
|
1835
|
+
<xsd:element name="noProof" type="CT_OnOff" minOccurs="0"/>
|
1836
|
+
<xsd:element name="snapToGrid" type="CT_OnOff" minOccurs="0"/>
|
1837
|
+
<xsd:element name="vanish" type="CT_OnOff" minOccurs="0"/>
|
1838
|
+
<xsd:element name="webHidden" type="CT_OnOff" minOccurs="0"/>
|
1839
|
+
<xsd:element name="color" type="CT_Color" minOccurs="0"/>
|
1840
|
+
<xsd:element name="spacing" type="CT_SignedTwipsMeasure" minOccurs="0"/>
|
1841
|
+
<xsd:element name="w" type="CT_TextScale" minOccurs="0"/>
|
1842
|
+
<xsd:element name="kern" type="CT_HpsMeasure" minOccurs="0"/>
|
1843
|
+
<xsd:element name="position" type="CT_SignedHpsMeasure" minOccurs="0"/>
|
1844
|
+
<xsd:element name="sz" type="CT_HpsMeasure" minOccurs="0"/>
|
1845
|
+
<xsd:element name="szCs" type="CT_HpsMeasure" minOccurs="0"/>
|
1846
|
+
<xsd:element name="highlight" type="CT_Highlight" minOccurs="0"/>
|
1847
|
+
<xsd:element name="u" type="CT_Underline" minOccurs="0"/>
|
1848
|
+
<xsd:element name="effect" type="CT_TextEffect" minOccurs="0"/>
|
1849
|
+
<xsd:element name="bdr" type="CT_Border" minOccurs="0"/>
|
1850
|
+
<xsd:element name="shd" type="CT_Shd" minOccurs="0"/>
|
1851
|
+
<xsd:element name="fitText" type="CT_FitText" minOccurs="0"/>
|
1852
|
+
<xsd:element name="vertAlign" type="CT_VerticalAlignRun" minOccurs="0"/>
|
1853
|
+
<xsd:element name="rtl" type="CT_OnOff" minOccurs="0"/>
|
1854
|
+
<xsd:element name="cs" type="CT_OnOff" minOccurs="0"/>
|
1855
|
+
<xsd:element name="em" type="CT_Em" minOccurs="0"/>
|
1856
|
+
<xsd:element name="lang" type="CT_Language" minOccurs="0"/>
|
1857
|
+
<xsd:element name="eastAsianLayout" type="CT_EastAsianLayout" minOccurs="0"/>
|
1858
|
+
<xsd:element name="specVanish" type="CT_OnOff" minOccurs="0"/>
|
1859
|
+
<xsd:element name="oMath" type="CT_OnOff" minOccurs="0"/>
|
1860
|
+
</xsd:sequence>
|
1861
|
+
</xsd:group>
|
1862
|
+
<xsd:group name="EG_RPrContent">
|
1863
|
+
<xsd:sequence>
|
1864
|
+
<xsd:group ref="EG_RPrBase" minOccurs="0"/>
|
1865
|
+
<xsd:element name="rPrChange" type="CT_RPrChange" minOccurs="0"/>
|
1866
|
+
</xsd:sequence>
|
1867
|
+
</xsd:group>
|
1868
|
+
<xsd:complexType name="CT_RPr">
|
1869
|
+
<xsd:sequence>
|
1870
|
+
<xsd:group ref="EG_RPrContent" minOccurs="0"/>
|
1871
|
+
</xsd:sequence>
|
1872
|
+
</xsd:complexType>
|
1873
|
+
<xsd:group name="EG_RPr">
|
1874
|
+
<xsd:sequence>
|
1875
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="0"/>
|
1876
|
+
</xsd:sequence>
|
1877
|
+
</xsd:group>
|
1878
|
+
<xsd:group name="EG_RPrMath">
|
1879
|
+
<xsd:choice>
|
1880
|
+
<xsd:group ref="EG_RPr"/>
|
1881
|
+
<xsd:element name="ins" type="CT_MathCtrlIns"/>
|
1882
|
+
<xsd:element name="del" type="CT_MathCtrlDel"/>
|
1883
|
+
</xsd:choice>
|
1884
|
+
</xsd:group>
|
1885
|
+
<xsd:complexType name="CT_MathCtrlIns">
|
1886
|
+
<xsd:complexContent>
|
1887
|
+
<xsd:extension base="CT_TrackChange">
|
1888
|
+
<xsd:choice minOccurs="0">
|
1889
|
+
<xsd:element name="del" type="CT_RPrChange" minOccurs="1"/>
|
1890
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="1"/>
|
1891
|
+
</xsd:choice>
|
1892
|
+
</xsd:extension>
|
1893
|
+
</xsd:complexContent>
|
1894
|
+
</xsd:complexType>
|
1895
|
+
<xsd:complexType name="CT_MathCtrlDel">
|
1896
|
+
<xsd:complexContent>
|
1897
|
+
<xsd:extension base="CT_TrackChange">
|
1898
|
+
<xsd:choice minOccurs="0">
|
1899
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="1"/>
|
1900
|
+
</xsd:choice>
|
1901
|
+
</xsd:extension>
|
1902
|
+
</xsd:complexContent>
|
1903
|
+
</xsd:complexType>
|
1904
|
+
<xsd:complexType name="CT_RPrOriginal">
|
1905
|
+
<xsd:sequence>
|
1906
|
+
<xsd:group ref="EG_RPrBase" minOccurs="0" maxOccurs="unbounded"/>
|
1907
|
+
</xsd:sequence>
|
1908
|
+
</xsd:complexType>
|
1909
|
+
<xsd:complexType name="CT_ParaRPrOriginal">
|
1910
|
+
<xsd:sequence>
|
1911
|
+
<xsd:group ref="EG_ParaRPrTrackChanges" minOccurs="0"/>
|
1912
|
+
<xsd:group ref="EG_RPrBase" minOccurs="0" maxOccurs="unbounded"/>
|
1913
|
+
</xsd:sequence>
|
1914
|
+
</xsd:complexType>
|
1915
|
+
<xsd:complexType name="CT_ParaRPr">
|
1916
|
+
<xsd:sequence>
|
1917
|
+
<xsd:group ref="EG_ParaRPrTrackChanges" minOccurs="0"/>
|
1918
|
+
<xsd:group ref="EG_RPrBase" minOccurs="0"/>
|
1919
|
+
<xsd:element name="rPrChange" type="CT_ParaRPrChange" minOccurs="0"/>
|
1920
|
+
</xsd:sequence>
|
1921
|
+
</xsd:complexType>
|
1922
|
+
<xsd:group name="EG_ParaRPrTrackChanges">
|
1923
|
+
<xsd:sequence>
|
1924
|
+
<xsd:element name="ins" type="CT_TrackChange" minOccurs="0"/>
|
1925
|
+
<xsd:element name="del" type="CT_TrackChange" minOccurs="0"/>
|
1926
|
+
<xsd:element name="moveFrom" type="CT_TrackChange" minOccurs="0"/>
|
1927
|
+
<xsd:element name="moveTo" type="CT_TrackChange" minOccurs="0"/>
|
1928
|
+
</xsd:sequence>
|
1929
|
+
</xsd:group>
|
1930
|
+
<xsd:complexType name="CT_AltChunk">
|
1931
|
+
<xsd:sequence>
|
1932
|
+
<xsd:element name="altChunkPr" type="CT_AltChunkPr" minOccurs="0" maxOccurs="1"/>
|
1933
|
+
</xsd:sequence>
|
1934
|
+
<xsd:attribute ref="r:id" use="optional"/>
|
1935
|
+
</xsd:complexType>
|
1936
|
+
<xsd:complexType name="CT_AltChunkPr">
|
1937
|
+
<xsd:sequence>
|
1938
|
+
<xsd:element name="matchSrc" type="CT_OnOff" minOccurs="0" maxOccurs="1"/>
|
1939
|
+
</xsd:sequence>
|
1940
|
+
</xsd:complexType>
|
1941
|
+
<xsd:simpleType name="ST_RubyAlign">
|
1942
|
+
<xsd:restriction base="xsd:string">
|
1943
|
+
<xsd:enumeration value="center"/>
|
1944
|
+
<xsd:enumeration value="distributeLetter"/>
|
1945
|
+
<xsd:enumeration value="distributeSpace"/>
|
1946
|
+
<xsd:enumeration value="left"/>
|
1947
|
+
<xsd:enumeration value="right"/>
|
1948
|
+
<xsd:enumeration value="rightVertical"/>
|
1949
|
+
</xsd:restriction>
|
1950
|
+
</xsd:simpleType>
|
1951
|
+
<xsd:complexType name="CT_RubyAlign">
|
1952
|
+
<xsd:attribute name="val" type="ST_RubyAlign" use="required"/>
|
1953
|
+
</xsd:complexType>
|
1954
|
+
<xsd:complexType name="CT_RubyPr">
|
1955
|
+
<xsd:sequence>
|
1956
|
+
<xsd:element name="rubyAlign" type="CT_RubyAlign"/>
|
1957
|
+
<xsd:element name="hps" type="CT_HpsMeasure"/>
|
1958
|
+
<xsd:element name="hpsRaise" type="CT_HpsMeasure"/>
|
1959
|
+
<xsd:element name="hpsBaseText" type="CT_HpsMeasure"/>
|
1960
|
+
<xsd:element name="lid" type="CT_Lang"/>
|
1961
|
+
<xsd:element name="dirty" type="CT_OnOff" minOccurs="0"/>
|
1962
|
+
</xsd:sequence>
|
1963
|
+
</xsd:complexType>
|
1964
|
+
<xsd:group name="EG_RubyContent">
|
1965
|
+
<xsd:choice>
|
1966
|
+
<xsd:element name="r" type="CT_R"/>
|
1967
|
+
<xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
1968
|
+
</xsd:choice>
|
1969
|
+
</xsd:group>
|
1970
|
+
<xsd:complexType name="CT_RubyContent">
|
1971
|
+
<xsd:group ref="EG_RubyContent" minOccurs="0" maxOccurs="unbounded"/>
|
1972
|
+
</xsd:complexType>
|
1973
|
+
<xsd:complexType name="CT_Ruby">
|
1974
|
+
<xsd:sequence>
|
1975
|
+
<xsd:element name="rubyPr" type="CT_RubyPr"/>
|
1976
|
+
<xsd:element name="rt" type="CT_RubyContent"/>
|
1977
|
+
<xsd:element name="rubyBase" type="CT_RubyContent"/>
|
1978
|
+
</xsd:sequence>
|
1979
|
+
</xsd:complexType>
|
1980
|
+
<xsd:simpleType name="ST_Lock">
|
1981
|
+
<xsd:restriction base="xsd:string">
|
1982
|
+
<xsd:enumeration value="sdtLocked"/>
|
1983
|
+
<xsd:enumeration value="contentLocked"/>
|
1984
|
+
<xsd:enumeration value="unlocked"/>
|
1985
|
+
<xsd:enumeration value="sdtContentLocked"/>
|
1986
|
+
</xsd:restriction>
|
1987
|
+
</xsd:simpleType>
|
1988
|
+
<xsd:complexType name="CT_Lock">
|
1989
|
+
<xsd:attribute name="val" type="ST_Lock"/>
|
1990
|
+
</xsd:complexType>
|
1991
|
+
<xsd:complexType name="CT_SdtListItem">
|
1992
|
+
<xsd:attribute name="displayText" type="s:ST_String"/>
|
1993
|
+
<xsd:attribute name="value" type="s:ST_String"/>
|
1994
|
+
</xsd:complexType>
|
1995
|
+
<xsd:simpleType name="ST_SdtDateMappingType">
|
1996
|
+
<xsd:restriction base="xsd:string">
|
1997
|
+
<xsd:enumeration value="text"/>
|
1998
|
+
<xsd:enumeration value="date"/>
|
1999
|
+
<xsd:enumeration value="dateTime"/>
|
2000
|
+
</xsd:restriction>
|
2001
|
+
</xsd:simpleType>
|
2002
|
+
<xsd:complexType name="CT_SdtDateMappingType">
|
2003
|
+
<xsd:attribute name="val" type="ST_SdtDateMappingType"/>
|
2004
|
+
</xsd:complexType>
|
2005
|
+
<xsd:complexType name="CT_CalendarType">
|
2006
|
+
<xsd:attribute name="val" type="s:ST_CalendarType"/>
|
2007
|
+
</xsd:complexType>
|
2008
|
+
<xsd:complexType name="CT_SdtDate">
|
2009
|
+
<xsd:sequence>
|
2010
|
+
<xsd:element name="dateFormat" type="CT_String" minOccurs="0"/>
|
2011
|
+
<xsd:element name="lid" type="CT_Lang" minOccurs="0"/>
|
2012
|
+
<xsd:element name="storeMappedDataAs" type="CT_SdtDateMappingType" minOccurs="0"/>
|
2013
|
+
<xsd:element name="calendar" type="CT_CalendarType" minOccurs="0"/>
|
2014
|
+
</xsd:sequence>
|
2015
|
+
<xsd:attribute name="fullDate" type="ST_DateTime" use="optional"/>
|
2016
|
+
</xsd:complexType>
|
2017
|
+
<xsd:complexType name="CT_SdtComboBox">
|
2018
|
+
<xsd:sequence>
|
2019
|
+
<xsd:element name="listItem" type="CT_SdtListItem" minOccurs="0" maxOccurs="unbounded"/>
|
2020
|
+
</xsd:sequence>
|
2021
|
+
<xsd:attribute name="lastValue" type="s:ST_String" use="optional"/>
|
2022
|
+
</xsd:complexType>
|
2023
|
+
<xsd:complexType name="CT_SdtDocPart">
|
2024
|
+
<xsd:sequence>
|
2025
|
+
<xsd:element name="docPartGallery" type="CT_String" minOccurs="0"/>
|
2026
|
+
<xsd:element name="docPartCategory" type="CT_String" minOccurs="0"/>
|
2027
|
+
<xsd:element name="docPartUnique" type="CT_OnOff" minOccurs="0"/>
|
2028
|
+
</xsd:sequence>
|
2029
|
+
</xsd:complexType>
|
2030
|
+
<xsd:complexType name="CT_SdtDropDownList">
|
2031
|
+
<xsd:sequence>
|
2032
|
+
<xsd:element name="listItem" type="CT_SdtListItem" minOccurs="0" maxOccurs="unbounded"/>
|
2033
|
+
</xsd:sequence>
|
2034
|
+
<xsd:attribute name="lastValue" type="s:ST_String" use="optional"/>
|
2035
|
+
</xsd:complexType>
|
2036
|
+
<xsd:complexType name="CT_Placeholder">
|
2037
|
+
<xsd:sequence>
|
2038
|
+
<xsd:element name="docPart" type="CT_String"/>
|
2039
|
+
</xsd:sequence>
|
2040
|
+
</xsd:complexType>
|
2041
|
+
<xsd:complexType name="CT_SdtText">
|
2042
|
+
<xsd:attribute name="multiLine" type="s:ST_OnOff"/>
|
2043
|
+
</xsd:complexType>
|
2044
|
+
<xsd:complexType name="CT_DataBinding">
|
2045
|
+
<xsd:attribute name="prefixMappings" type="s:ST_String"/>
|
2046
|
+
<xsd:attribute name="xpath" type="s:ST_String" use="required"/>
|
2047
|
+
<xsd:attribute name="storeItemID" type="s:ST_String" use="required"/>
|
2048
|
+
</xsd:complexType>
|
2049
|
+
<xsd:complexType name="CT_SdtPr">
|
2050
|
+
<xsd:choice maxOccurs="unbounded">
|
2051
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="0"/>
|
2052
|
+
<xsd:element name="alias" type="CT_String" minOccurs="0"/>
|
2053
|
+
<xsd:element name="label" type="CT_DecimalNumber" minOccurs="0"/>
|
2054
|
+
<xsd:element name="tabIndex" type="CT_UnsignedDecimalNumber" minOccurs="0"/>
|
2055
|
+
<xsd:element name="lock" type="CT_Lock" minOccurs="0"/>
|
2056
|
+
<xsd:element name="placeholder" type="CT_Placeholder" minOccurs="0"/>
|
2057
|
+
<xsd:element name="showingPlcHdr" type="CT_OnOff" minOccurs="0"/>
|
2058
|
+
<xsd:element name="dataBinding" type="CT_DataBinding" minOccurs="0"/>
|
2059
|
+
<xsd:element name="temporary" type="CT_OnOff" minOccurs="0"/>
|
2060
|
+
<xsd:element name="id" type="CT_DecimalNumber" minOccurs="0"/>
|
2061
|
+
<xsd:element name="tag" type="CT_String" minOccurs="0"/>
|
2062
|
+
<xsd:choice minOccurs="0" maxOccurs="1">
|
2063
|
+
<xsd:element name="equation" type="CT_Empty"/>
|
2064
|
+
<xsd:element name="comboBox" type="CT_SdtComboBox"/>
|
2065
|
+
<xsd:element name="date" type="CT_SdtDate"/>
|
2066
|
+
<xsd:element name="docPartObj" type="CT_SdtDocPart"/>
|
2067
|
+
<xsd:element name="docPartList" type="CT_SdtDocPart"/>
|
2068
|
+
<xsd:element name="dropDownList" type="CT_SdtDropDownList"/>
|
2069
|
+
<xsd:element name="picture" type="CT_Empty"/>
|
2070
|
+
<xsd:element name="richText" type="CT_Empty"/>
|
2071
|
+
<xsd:element name="text" type="CT_SdtText"/>
|
2072
|
+
<xsd:element name="citation" type="CT_Empty"/>
|
2073
|
+
<xsd:element name="group" type="CT_Empty"/>
|
2074
|
+
<xsd:element name="bibliography" type="CT_Empty"/>
|
2075
|
+
</xsd:choice>
|
2076
|
+
</xsd:choice>
|
2077
|
+
</xsd:complexType>
|
2078
|
+
<xsd:complexType name="CT_SdtEndPr">
|
2079
|
+
<xsd:choice maxOccurs="unbounded">
|
2080
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="0"/>
|
2081
|
+
</xsd:choice>
|
2082
|
+
</xsd:complexType>
|
2083
|
+
<xsd:group name="EG_ContentRunContent">
|
2084
|
+
<xsd:choice>
|
2085
|
+
<xsd:element name="customXml" type="CT_CustomXmlRun"/>
|
2086
|
+
<xsd:element name="smartTag" type="CT_SmartTagRun"/>
|
2087
|
+
<xsd:element name="sdt" type="CT_SdtRun"/>
|
2088
|
+
<xsd:element name="dir" type="CT_DirContentRun"/>
|
2089
|
+
<xsd:element name="bdo" type="CT_BdoContentRun"/>
|
2090
|
+
<xsd:element name="r" type="CT_R"/>
|
2091
|
+
<xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
2092
|
+
</xsd:choice>
|
2093
|
+
</xsd:group>
|
2094
|
+
<xsd:complexType name="CT_DirContentRun">
|
2095
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
2096
|
+
<xsd:attribute name="val" type="ST_Direction" use="optional"/>
|
2097
|
+
</xsd:complexType>
|
2098
|
+
<xsd:complexType name="CT_BdoContentRun">
|
2099
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
2100
|
+
<xsd:attribute name="val" type="ST_Direction" use="optional"/>
|
2101
|
+
</xsd:complexType>
|
2102
|
+
<xsd:simpleType name="ST_Direction">
|
2103
|
+
<xsd:restriction base="xsd:string">
|
2104
|
+
<xsd:enumeration value="ltr"/>
|
2105
|
+
<xsd:enumeration value="rtl"/>
|
2106
|
+
</xsd:restriction>
|
2107
|
+
</xsd:simpleType>
|
2108
|
+
<xsd:complexType name="CT_SdtContentRun">
|
2109
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
2110
|
+
</xsd:complexType>
|
2111
|
+
<xsd:group name="EG_ContentBlockContent">
|
2112
|
+
<xsd:choice>
|
2113
|
+
<xsd:element name="customXml" type="CT_CustomXmlBlock"/>
|
2114
|
+
<xsd:element name="sdt" type="CT_SdtBlock"/>
|
2115
|
+
<xsd:element name="p" type="CT_P" minOccurs="0" maxOccurs="unbounded"/>
|
2116
|
+
<xsd:element name="tbl" type="CT_Tbl" minOccurs="0" maxOccurs="unbounded"/>
|
2117
|
+
<xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
2118
|
+
</xsd:choice>
|
2119
|
+
</xsd:group>
|
2120
|
+
<xsd:complexType name="CT_SdtContentBlock">
|
2121
|
+
<xsd:group ref="EG_ContentBlockContent" minOccurs="0" maxOccurs="unbounded"/>
|
2122
|
+
</xsd:complexType>
|
2123
|
+
<xsd:group name="EG_ContentRowContent">
|
2124
|
+
<xsd:choice>
|
2125
|
+
<xsd:element name="tr" type="CT_Row" minOccurs="0" maxOccurs="unbounded"/>
|
2126
|
+
<xsd:element name="customXml" type="CT_CustomXmlRow"/>
|
2127
|
+
<xsd:element name="sdt" type="CT_SdtRow"/>
|
2128
|
+
<xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
2129
|
+
</xsd:choice>
|
2130
|
+
</xsd:group>
|
2131
|
+
<xsd:complexType name="CT_SdtContentRow">
|
2132
|
+
<xsd:group ref="EG_ContentRowContent" minOccurs="0" maxOccurs="unbounded"/>
|
2133
|
+
</xsd:complexType>
|
2134
|
+
<xsd:group name="EG_ContentCellContent">
|
2135
|
+
<xsd:choice>
|
2136
|
+
<xsd:element name="tc" type="CT_Tc" minOccurs="0" maxOccurs="unbounded"/>
|
2137
|
+
<xsd:element name="customXml" type="CT_CustomXmlCell"/>
|
2138
|
+
<xsd:element name="sdt" type="CT_SdtCell"/>
|
2139
|
+
<xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
2140
|
+
</xsd:choice>
|
2141
|
+
</xsd:group>
|
2142
|
+
<xsd:complexType name="CT_SdtContentCell">
|
2143
|
+
<xsd:group ref="EG_ContentCellContent" minOccurs="0" maxOccurs="unbounded"/>
|
2144
|
+
</xsd:complexType>
|
2145
|
+
<xsd:complexType name="CT_SdtBlock">
|
2146
|
+
<xsd:sequence>
|
2147
|
+
<xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/>
|
2148
|
+
<xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/>
|
2149
|
+
<xsd:element name="sdtContent" type="CT_SdtContentBlock" minOccurs="0" maxOccurs="1"/>
|
2150
|
+
</xsd:sequence>
|
2151
|
+
</xsd:complexType>
|
2152
|
+
<xsd:complexType name="CT_SdtRun">
|
2153
|
+
<xsd:sequence>
|
2154
|
+
<xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/>
|
2155
|
+
<xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/>
|
2156
|
+
<xsd:element name="sdtContent" type="CT_SdtContentRun" minOccurs="0" maxOccurs="1"/>
|
2157
|
+
</xsd:sequence>
|
2158
|
+
</xsd:complexType>
|
2159
|
+
<xsd:complexType name="CT_SdtCell">
|
2160
|
+
<xsd:sequence>
|
2161
|
+
<xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/>
|
2162
|
+
<xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/>
|
2163
|
+
<xsd:element name="sdtContent" type="CT_SdtContentCell" minOccurs="0" maxOccurs="1"/>
|
2164
|
+
</xsd:sequence>
|
2165
|
+
</xsd:complexType>
|
2166
|
+
<xsd:complexType name="CT_SdtRow">
|
2167
|
+
<xsd:sequence>
|
2168
|
+
<xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/>
|
2169
|
+
<xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/>
|
2170
|
+
<xsd:element name="sdtContent" type="CT_SdtContentRow" minOccurs="0" maxOccurs="1"/>
|
2171
|
+
</xsd:sequence>
|
2172
|
+
</xsd:complexType>
|
2173
|
+
<xsd:complexType name="CT_Attr">
|
2174
|
+
<xsd:attribute name="uri" type="s:ST_String"/>
|
2175
|
+
<xsd:attribute name="name" type="s:ST_String" use="required"/>
|
2176
|
+
<xsd:attribute name="val" type="s:ST_String" use="required"/>
|
2177
|
+
</xsd:complexType>
|
2178
|
+
<xsd:complexType name="CT_CustomXmlRun">
|
2179
|
+
<xsd:sequence>
|
2180
|
+
<xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/>
|
2181
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
2182
|
+
</xsd:sequence>
|
2183
|
+
<xsd:attribute name="uri" type="s:ST_String"/>
|
2184
|
+
<xsd:attribute name="element" type="s:ST_String" use="required"/>
|
2185
|
+
</xsd:complexType>
|
2186
|
+
<xsd:complexType name="CT_SmartTagRun">
|
2187
|
+
<xsd:sequence>
|
2188
|
+
<xsd:element name="smartTagPr" type="CT_SmartTagPr" minOccurs="0" maxOccurs="1"/>
|
2189
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
2190
|
+
</xsd:sequence>
|
2191
|
+
<xsd:attribute name="uri" type="s:ST_String"/>
|
2192
|
+
<xsd:attribute name="element" type="s:ST_String" use="required"/>
|
2193
|
+
</xsd:complexType>
|
2194
|
+
<xsd:complexType name="CT_CustomXmlBlock">
|
2195
|
+
<xsd:sequence>
|
2196
|
+
<xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/>
|
2197
|
+
<xsd:group ref="EG_ContentBlockContent" minOccurs="0" maxOccurs="unbounded"/>
|
2198
|
+
</xsd:sequence>
|
2199
|
+
<xsd:attribute name="uri" type="s:ST_String"/>
|
2200
|
+
<xsd:attribute name="element" type="s:ST_String" use="required"/>
|
2201
|
+
</xsd:complexType>
|
2202
|
+
<xsd:complexType name="CT_CustomXmlPr">
|
2203
|
+
<xsd:sequence>
|
2204
|
+
<xsd:element name="placeholder" type="CT_String" minOccurs="0"/>
|
2205
|
+
<xsd:element name="attr" type="CT_Attr" minOccurs="0" maxOccurs="unbounded"/>
|
2206
|
+
</xsd:sequence>
|
2207
|
+
</xsd:complexType>
|
2208
|
+
<xsd:complexType name="CT_CustomXmlRow">
|
2209
|
+
<xsd:sequence>
|
2210
|
+
<xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/>
|
2211
|
+
<xsd:group ref="EG_ContentRowContent" minOccurs="0" maxOccurs="unbounded"/>
|
2212
|
+
</xsd:sequence>
|
2213
|
+
<xsd:attribute name="uri" type="s:ST_String"/>
|
2214
|
+
<xsd:attribute name="element" type="s:ST_String" use="required"/>
|
2215
|
+
</xsd:complexType>
|
2216
|
+
<xsd:complexType name="CT_CustomXmlCell">
|
2217
|
+
<xsd:sequence>
|
2218
|
+
<xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/>
|
2219
|
+
<xsd:group ref="EG_ContentCellContent" minOccurs="0" maxOccurs="unbounded"/>
|
2220
|
+
</xsd:sequence>
|
2221
|
+
<xsd:attribute name="uri" type="s:ST_String"/>
|
2222
|
+
<xsd:attribute name="element" type="s:ST_String" use="required"/>
|
2223
|
+
</xsd:complexType>
|
2224
|
+
<xsd:complexType name="CT_SmartTagPr">
|
2225
|
+
<xsd:sequence>
|
2226
|
+
<xsd:element name="attr" type="CT_Attr" minOccurs="0" maxOccurs="unbounded"/>
|
2227
|
+
</xsd:sequence>
|
2228
|
+
</xsd:complexType>
|
2229
|
+
<xsd:group name="EG_PContent">
|
2230
|
+
<xsd:choice>
|
2231
|
+
<xsd:group ref="EG_ContentRunContent" minOccurs="0" maxOccurs="unbounded"/>
|
2232
|
+
<xsd:element name="fldSimple" type="CT_SimpleField" minOccurs="0" maxOccurs="unbounded"/>
|
2233
|
+
<xsd:element name="hyperlink" type="CT_Hyperlink"/>
|
2234
|
+
<xsd:element name="subDoc" type="CT_Rel"/>
|
2235
|
+
</xsd:choice>
|
2236
|
+
</xsd:group>
|
2237
|
+
<xsd:complexType name="CT_P">
|
2238
|
+
<xsd:sequence>
|
2239
|
+
<xsd:element name="pPr" type="CT_PPr" minOccurs="0"/>
|
2240
|
+
<xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
|
2241
|
+
</xsd:sequence>
|
2242
|
+
<xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/>
|
2243
|
+
<xsd:attribute name="rsidR" type="ST_LongHexNumber"/>
|
2244
|
+
<xsd:attribute name="rsidDel" type="ST_LongHexNumber"/>
|
2245
|
+
<xsd:attribute name="rsidP" type="ST_LongHexNumber"/>
|
2246
|
+
<xsd:attribute name="rsidRDefault" type="ST_LongHexNumber"/>
|
2247
|
+
</xsd:complexType>
|
2248
|
+
<xsd:simpleType name="ST_TblWidth">
|
2249
|
+
<xsd:restriction base="xsd:string">
|
2250
|
+
<xsd:enumeration value="nil"/>
|
2251
|
+
<xsd:enumeration value="pct"/>
|
2252
|
+
<xsd:enumeration value="dxa"/>
|
2253
|
+
<xsd:enumeration value="auto"/>
|
2254
|
+
</xsd:restriction>
|
2255
|
+
</xsd:simpleType>
|
2256
|
+
<xsd:complexType name="CT_Height">
|
2257
|
+
<xsd:attribute name="val" type="s:ST_TwipsMeasure"/>
|
2258
|
+
<xsd:attribute name="hRule" type="ST_HeightRule"/>
|
2259
|
+
</xsd:complexType>
|
2260
|
+
<xsd:simpleType name="ST_MeasurementOrPercent">
|
2261
|
+
<xsd:union memberTypes="ST_DecimalNumberOrPercent s:ST_UniversalMeasure"/>
|
2262
|
+
</xsd:simpleType>
|
2263
|
+
<xsd:complexType name="CT_TblWidth">
|
2264
|
+
<xsd:attribute name="w" type="ST_MeasurementOrPercent"/>
|
2265
|
+
<xsd:attribute name="type" type="ST_TblWidth"/>
|
2266
|
+
</xsd:complexType>
|
2267
|
+
<xsd:complexType name="CT_TblGridCol">
|
2268
|
+
<xsd:attribute name="w" type="s:ST_TwipsMeasure"/>
|
2269
|
+
</xsd:complexType>
|
2270
|
+
<xsd:complexType name="CT_TblGridBase">
|
2271
|
+
<xsd:sequence>
|
2272
|
+
<xsd:element name="gridCol" type="CT_TblGridCol" minOccurs="0" maxOccurs="unbounded"/>
|
2273
|
+
</xsd:sequence>
|
2274
|
+
</xsd:complexType>
|
2275
|
+
<xsd:complexType name="CT_TblGrid">
|
2276
|
+
<xsd:complexContent>
|
2277
|
+
<xsd:extension base="CT_TblGridBase">
|
2278
|
+
<xsd:sequence>
|
2279
|
+
<xsd:element name="tblGridChange" type="CT_TblGridChange" minOccurs="0"/>
|
2280
|
+
</xsd:sequence>
|
2281
|
+
</xsd:extension>
|
2282
|
+
</xsd:complexContent>
|
2283
|
+
</xsd:complexType>
|
2284
|
+
<xsd:complexType name="CT_TcBorders">
|
2285
|
+
<xsd:sequence>
|
2286
|
+
<xsd:element name="top" type="CT_Border" minOccurs="0"/>
|
2287
|
+
<xsd:element name="start" type="CT_Border" minOccurs="0"/>
|
2288
|
+
<xsd:element name="left" type="CT_Border" minOccurs="0"/>
|
2289
|
+
<xsd:element name="bottom" type="CT_Border" minOccurs="0"/>
|
2290
|
+
<xsd:element name="end" type="CT_Border" minOccurs="0"/>
|
2291
|
+
<xsd:element name="right" type="CT_Border" minOccurs="0"/>
|
2292
|
+
<xsd:element name="insideH" type="CT_Border" minOccurs="0"/>
|
2293
|
+
<xsd:element name="insideV" type="CT_Border" minOccurs="0"/>
|
2294
|
+
<xsd:element name="tl2br" type="CT_Border" minOccurs="0"/>
|
2295
|
+
<xsd:element name="tr2bl" type="CT_Border" minOccurs="0"/>
|
2296
|
+
</xsd:sequence>
|
2297
|
+
</xsd:complexType>
|
2298
|
+
<xsd:complexType name="CT_TcMar">
|
2299
|
+
<xsd:sequence>
|
2300
|
+
<xsd:element name="top" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2301
|
+
<xsd:element name="start" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2302
|
+
<xsd:element name="left" type="CT_TblWidth" minOccurs="0"/>
|
2303
|
+
<xsd:element name="bottom" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2304
|
+
<xsd:element name="end" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2305
|
+
<xsd:element name="right" type="CT_TblWidth" minOccurs="0"/>
|
2306
|
+
</xsd:sequence>
|
2307
|
+
</xsd:complexType>
|
2308
|
+
<xsd:simpleType name="ST_Merge">
|
2309
|
+
<xsd:restriction base="xsd:string">
|
2310
|
+
<xsd:enumeration value="continue"/>
|
2311
|
+
<xsd:enumeration value="restart"/>
|
2312
|
+
</xsd:restriction>
|
2313
|
+
</xsd:simpleType>
|
2314
|
+
<xsd:complexType name="CT_VMerge">
|
2315
|
+
<xsd:attribute name="val" type="ST_Merge"/>
|
2316
|
+
</xsd:complexType>
|
2317
|
+
<xsd:complexType name="CT_HMerge">
|
2318
|
+
<xsd:attribute name="val" type="ST_Merge"/>
|
2319
|
+
</xsd:complexType>
|
2320
|
+
<xsd:complexType name="CT_TcPrBase">
|
2321
|
+
<xsd:sequence>
|
2322
|
+
<xsd:element name="cnfStyle" type="CT_Cnf" minOccurs="0" maxOccurs="1"/>
|
2323
|
+
<xsd:element name="tcW" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2324
|
+
<xsd:element name="gridSpan" type="CT_DecimalNumber" minOccurs="0"/>
|
2325
|
+
<xsd:element name="hMerge" type="CT_HMerge" minOccurs="0"/>
|
2326
|
+
<xsd:element name="vMerge" type="CT_VMerge" minOccurs="0"/>
|
2327
|
+
<xsd:element name="tcBorders" type="CT_TcBorders" minOccurs="0" maxOccurs="1"/>
|
2328
|
+
<xsd:element name="shd" type="CT_Shd" minOccurs="0"/>
|
2329
|
+
<xsd:element name="noWrap" type="CT_OnOff" minOccurs="0"/>
|
2330
|
+
<xsd:element name="tcMar" type="CT_TcMar" minOccurs="0" maxOccurs="1"/>
|
2331
|
+
<xsd:element name="textDirection" type="CT_TextDirection" minOccurs="0" maxOccurs="1"/>
|
2332
|
+
<xsd:element name="tcFitText" type="CT_OnOff" minOccurs="0" maxOccurs="1"/>
|
2333
|
+
<xsd:element name="vAlign" type="CT_VerticalJc" minOccurs="0"/>
|
2334
|
+
<xsd:element name="hideMark" type="CT_OnOff" minOccurs="0"/>
|
2335
|
+
<xsd:element name="headers" type="CT_Headers" minOccurs="0"/>
|
2336
|
+
</xsd:sequence>
|
2337
|
+
</xsd:complexType>
|
2338
|
+
<xsd:complexType name="CT_TcPr">
|
2339
|
+
<xsd:complexContent>
|
2340
|
+
<xsd:extension base="CT_TcPrInner">
|
2341
|
+
<xsd:sequence>
|
2342
|
+
<xsd:element name="tcPrChange" type="CT_TcPrChange" minOccurs="0"/>
|
2343
|
+
</xsd:sequence>
|
2344
|
+
</xsd:extension>
|
2345
|
+
</xsd:complexContent>
|
2346
|
+
</xsd:complexType>
|
2347
|
+
<xsd:complexType name="CT_TcPrInner">
|
2348
|
+
<xsd:complexContent>
|
2349
|
+
<xsd:extension base="CT_TcPrBase">
|
2350
|
+
<xsd:sequence>
|
2351
|
+
<xsd:group ref="EG_CellMarkupElements" minOccurs="0" maxOccurs="1"/>
|
2352
|
+
</xsd:sequence>
|
2353
|
+
</xsd:extension>
|
2354
|
+
</xsd:complexContent>
|
2355
|
+
</xsd:complexType>
|
2356
|
+
<xsd:complexType name="CT_Tc">
|
2357
|
+
<xsd:sequence>
|
2358
|
+
<xsd:element name="tcPr" type="CT_TcPr" minOccurs="0" maxOccurs="1"/>
|
2359
|
+
<xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/>
|
2360
|
+
</xsd:sequence>
|
2361
|
+
<xsd:attribute name="id" type="s:ST_String" use="optional"/>
|
2362
|
+
</xsd:complexType>
|
2363
|
+
<xsd:simpleType name="ST_Cnf">
|
2364
|
+
<xsd:restriction base="xsd:string">
|
2365
|
+
<xsd:length value="12"/>
|
2366
|
+
<xsd:pattern value="[01]*"/>
|
2367
|
+
</xsd:restriction>
|
2368
|
+
</xsd:simpleType>
|
2369
|
+
<xsd:complexType name="CT_Cnf">
|
2370
|
+
<xsd:attribute name="val" type="ST_Cnf"/>
|
2371
|
+
<xsd:attribute name="firstRow" type="s:ST_OnOff"/>
|
2372
|
+
<xsd:attribute name="lastRow" type="s:ST_OnOff"/>
|
2373
|
+
<xsd:attribute name="firstColumn" type="s:ST_OnOff"/>
|
2374
|
+
<xsd:attribute name="lastColumn" type="s:ST_OnOff"/>
|
2375
|
+
<xsd:attribute name="oddVBand" type="s:ST_OnOff"/>
|
2376
|
+
<xsd:attribute name="evenVBand" type="s:ST_OnOff"/>
|
2377
|
+
<xsd:attribute name="oddHBand" type="s:ST_OnOff"/>
|
2378
|
+
<xsd:attribute name="evenHBand" type="s:ST_OnOff"/>
|
2379
|
+
<xsd:attribute name="firstRowFirstColumn" type="s:ST_OnOff"/>
|
2380
|
+
<xsd:attribute name="firstRowLastColumn" type="s:ST_OnOff"/>
|
2381
|
+
<xsd:attribute name="lastRowFirstColumn" type="s:ST_OnOff"/>
|
2382
|
+
<xsd:attribute name="lastRowLastColumn" type="s:ST_OnOff"/>
|
2383
|
+
</xsd:complexType>
|
2384
|
+
<xsd:complexType name="CT_Headers">
|
2385
|
+
<xsd:sequence minOccurs="0" maxOccurs="unbounded">
|
2386
|
+
<xsd:element name="header" type="CT_String"/>
|
2387
|
+
</xsd:sequence>
|
2388
|
+
</xsd:complexType>
|
2389
|
+
<xsd:complexType name="CT_TrPrBase">
|
2390
|
+
<xsd:choice maxOccurs="unbounded">
|
2391
|
+
<xsd:element name="cnfStyle" type="CT_Cnf" minOccurs="0" maxOccurs="1"/>
|
2392
|
+
<xsd:element name="divId" type="CT_DecimalNumber" minOccurs="0"/>
|
2393
|
+
<xsd:element name="gridBefore" type="CT_DecimalNumber" minOccurs="0"/>
|
2394
|
+
<xsd:element name="gridAfter" type="CT_DecimalNumber" minOccurs="0"/>
|
2395
|
+
<xsd:element name="wBefore" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2396
|
+
<xsd:element name="wAfter" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2397
|
+
<xsd:element name="cantSplit" type="CT_OnOff" minOccurs="0"/>
|
2398
|
+
<xsd:element name="trHeight" type="CT_Height" minOccurs="0"/>
|
2399
|
+
<xsd:element name="tblHeader" type="CT_OnOff" minOccurs="0"/>
|
2400
|
+
<xsd:element name="tblCellSpacing" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2401
|
+
<xsd:element name="jc" type="CT_JcTable" minOccurs="0" maxOccurs="1"/>
|
2402
|
+
<xsd:element name="hidden" type="CT_OnOff" minOccurs="0"/>
|
2403
|
+
</xsd:choice>
|
2404
|
+
</xsd:complexType>
|
2405
|
+
<xsd:complexType name="CT_TrPr">
|
2406
|
+
<xsd:complexContent>
|
2407
|
+
<xsd:extension base="CT_TrPrBase">
|
2408
|
+
<xsd:sequence>
|
2409
|
+
<xsd:element name="ins" type="CT_TrackChange" minOccurs="0"/>
|
2410
|
+
<xsd:element name="del" type="CT_TrackChange" minOccurs="0"/>
|
2411
|
+
<xsd:element name="trPrChange" type="CT_TrPrChange" minOccurs="0"/>
|
2412
|
+
</xsd:sequence>
|
2413
|
+
</xsd:extension>
|
2414
|
+
</xsd:complexContent>
|
2415
|
+
</xsd:complexType>
|
2416
|
+
<xsd:complexType name="CT_Row">
|
2417
|
+
<xsd:sequence>
|
2418
|
+
<xsd:element name="tblPrEx" type="CT_TblPrEx" minOccurs="0" maxOccurs="1"/>
|
2419
|
+
<xsd:element name="trPr" type="CT_TrPr" minOccurs="0" maxOccurs="1"/>
|
2420
|
+
<xsd:group ref="EG_ContentCellContent" minOccurs="0" maxOccurs="unbounded"/>
|
2421
|
+
</xsd:sequence>
|
2422
|
+
<xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/>
|
2423
|
+
<xsd:attribute name="rsidR" type="ST_LongHexNumber"/>
|
2424
|
+
<xsd:attribute name="rsidDel" type="ST_LongHexNumber"/>
|
2425
|
+
<xsd:attribute name="rsidTr" type="ST_LongHexNumber"/>
|
2426
|
+
</xsd:complexType>
|
2427
|
+
<xsd:simpleType name="ST_TblLayoutType">
|
2428
|
+
<xsd:restriction base="xsd:string">
|
2429
|
+
<xsd:enumeration value="fixed"/>
|
2430
|
+
<xsd:enumeration value="autofit"/>
|
2431
|
+
</xsd:restriction>
|
2432
|
+
</xsd:simpleType>
|
2433
|
+
<xsd:complexType name="CT_TblLayoutType">
|
2434
|
+
<xsd:attribute name="type" type="ST_TblLayoutType"/>
|
2435
|
+
</xsd:complexType>
|
2436
|
+
<xsd:simpleType name="ST_TblOverlap">
|
2437
|
+
<xsd:restriction base="xsd:string">
|
2438
|
+
<xsd:enumeration value="never"/>
|
2439
|
+
<xsd:enumeration value="overlap"/>
|
2440
|
+
</xsd:restriction>
|
2441
|
+
</xsd:simpleType>
|
2442
|
+
<xsd:complexType name="CT_TblOverlap">
|
2443
|
+
<xsd:attribute name="val" type="ST_TblOverlap" use="required"/>
|
2444
|
+
</xsd:complexType>
|
2445
|
+
<xsd:complexType name="CT_TblPPr">
|
2446
|
+
<xsd:attribute name="leftFromText" type="s:ST_TwipsMeasure"/>
|
2447
|
+
<xsd:attribute name="rightFromText" type="s:ST_TwipsMeasure"/>
|
2448
|
+
<xsd:attribute name="topFromText" type="s:ST_TwipsMeasure"/>
|
2449
|
+
<xsd:attribute name="bottomFromText" type="s:ST_TwipsMeasure"/>
|
2450
|
+
<xsd:attribute name="vertAnchor" type="ST_VAnchor"/>
|
2451
|
+
<xsd:attribute name="horzAnchor" type="ST_HAnchor"/>
|
2452
|
+
<xsd:attribute name="tblpXSpec" type="s:ST_XAlign"/>
|
2453
|
+
<xsd:attribute name="tblpX" type="ST_SignedTwipsMeasure"/>
|
2454
|
+
<xsd:attribute name="tblpYSpec" type="s:ST_YAlign"/>
|
2455
|
+
<xsd:attribute name="tblpY" type="ST_SignedTwipsMeasure"/>
|
2456
|
+
</xsd:complexType>
|
2457
|
+
<xsd:complexType name="CT_TblCellMar">
|
2458
|
+
<xsd:sequence>
|
2459
|
+
<xsd:element name="top" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2460
|
+
<xsd:element name="start" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2461
|
+
<xsd:element name="left" type="CT_TblWidth" minOccurs="0"/>
|
2462
|
+
<xsd:element name="bottom" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2463
|
+
<xsd:element name="end" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2464
|
+
<xsd:element name="right" type="CT_TblWidth" minOccurs="0"/>
|
2465
|
+
</xsd:sequence>
|
2466
|
+
</xsd:complexType>
|
2467
|
+
<xsd:complexType name="CT_TblBorders">
|
2468
|
+
<xsd:sequence>
|
2469
|
+
<xsd:element name="top" type="CT_Border" minOccurs="0"/>
|
2470
|
+
<xsd:element name="start" type="CT_Border" minOccurs="0"/>
|
2471
|
+
<xsd:element name="left" type="CT_Border" minOccurs="0"/>
|
2472
|
+
<xsd:element name="bottom" type="CT_Border" minOccurs="0"/>
|
2473
|
+
<xsd:element name="end" type="CT_Border" minOccurs="0"/>
|
2474
|
+
<xsd:element name="right" type="CT_Border" minOccurs="0"/>
|
2475
|
+
<xsd:element name="insideH" type="CT_Border" minOccurs="0"/>
|
2476
|
+
<xsd:element name="insideV" type="CT_Border" minOccurs="0"/>
|
2477
|
+
</xsd:sequence>
|
2478
|
+
</xsd:complexType>
|
2479
|
+
<xsd:complexType name="CT_TblPrBase">
|
2480
|
+
<xsd:sequence>
|
2481
|
+
<xsd:element name="tblStyle" type="CT_String" minOccurs="0"/>
|
2482
|
+
<xsd:element name="tblpPr" type="CT_TblPPr" minOccurs="0" maxOccurs="1"/>
|
2483
|
+
<xsd:element name="tblOverlap" type="CT_TblOverlap" minOccurs="0" maxOccurs="1"/>
|
2484
|
+
<xsd:element name="bidiVisual" type="CT_OnOff" minOccurs="0" maxOccurs="1"/>
|
2485
|
+
<xsd:element name="tblStyleRowBandSize" type="CT_DecimalNumber" minOccurs="0" maxOccurs="1"/>
|
2486
|
+
<xsd:element name="tblStyleColBandSize" type="CT_DecimalNumber" minOccurs="0" maxOccurs="1"/>
|
2487
|
+
<xsd:element name="tblW" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2488
|
+
<xsd:element name="jc" type="CT_JcTable" minOccurs="0" maxOccurs="1"/>
|
2489
|
+
<xsd:element name="tblCellSpacing" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2490
|
+
<xsd:element name="tblInd" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2491
|
+
<xsd:element name="tblBorders" type="CT_TblBorders" minOccurs="0" maxOccurs="1"/>
|
2492
|
+
<xsd:element name="shd" type="CT_Shd" minOccurs="0" maxOccurs="1"/>
|
2493
|
+
<xsd:element name="tblLayout" type="CT_TblLayoutType" minOccurs="0" maxOccurs="1"/>
|
2494
|
+
<xsd:element name="tblCellMar" type="CT_TblCellMar" minOccurs="0" maxOccurs="1"/>
|
2495
|
+
<xsd:element name="tblLook" type="CT_TblLook" minOccurs="0" maxOccurs="1"/>
|
2496
|
+
<xsd:element name="tblCaption" type="CT_String" minOccurs="0" maxOccurs="1"/>
|
2497
|
+
<xsd:element name="tblDescription" type="CT_String" minOccurs="0" maxOccurs="1"/>
|
2498
|
+
</xsd:sequence>
|
2499
|
+
</xsd:complexType>
|
2500
|
+
<xsd:complexType name="CT_TblPr">
|
2501
|
+
<xsd:complexContent>
|
2502
|
+
<xsd:extension base="CT_TblPrBase">
|
2503
|
+
<xsd:sequence>
|
2504
|
+
<xsd:element name="tblPrChange" type="CT_TblPrChange" minOccurs="0"/>
|
2505
|
+
</xsd:sequence>
|
2506
|
+
</xsd:extension>
|
2507
|
+
</xsd:complexContent>
|
2508
|
+
</xsd:complexType>
|
2509
|
+
<xsd:complexType name="CT_TblPrExBase">
|
2510
|
+
<xsd:sequence>
|
2511
|
+
<xsd:element name="tblW" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2512
|
+
<xsd:element name="jc" type="CT_JcTable" minOccurs="0" maxOccurs="1"/>
|
2513
|
+
<xsd:element name="tblCellSpacing" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2514
|
+
<xsd:element name="tblInd" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/>
|
2515
|
+
<xsd:element name="tblBorders" type="CT_TblBorders" minOccurs="0" maxOccurs="1"/>
|
2516
|
+
<xsd:element name="shd" type="CT_Shd" minOccurs="0" maxOccurs="1"/>
|
2517
|
+
<xsd:element name="tblLayout" type="CT_TblLayoutType" minOccurs="0" maxOccurs="1"/>
|
2518
|
+
<xsd:element name="tblCellMar" type="CT_TblCellMar" minOccurs="0" maxOccurs="1"/>
|
2519
|
+
<xsd:element name="tblLook" type="CT_TblLook" minOccurs="0" maxOccurs="1"/>
|
2520
|
+
</xsd:sequence>
|
2521
|
+
</xsd:complexType>
|
2522
|
+
<xsd:complexType name="CT_TblPrEx">
|
2523
|
+
<xsd:complexContent>
|
2524
|
+
<xsd:extension base="CT_TblPrExBase">
|
2525
|
+
<xsd:sequence>
|
2526
|
+
<xsd:element name="tblPrExChange" type="CT_TblPrExChange" minOccurs="0"/>
|
2527
|
+
</xsd:sequence>
|
2528
|
+
</xsd:extension>
|
2529
|
+
</xsd:complexContent>
|
2530
|
+
</xsd:complexType>
|
2531
|
+
<xsd:complexType name="CT_Tbl">
|
2532
|
+
<xsd:sequence>
|
2533
|
+
<xsd:group ref="EG_RangeMarkupElements" minOccurs="0" maxOccurs="unbounded"/>
|
2534
|
+
<xsd:element name="tblPr" type="CT_TblPr"/>
|
2535
|
+
<xsd:element name="tblGrid" type="CT_TblGrid"/>
|
2536
|
+
<xsd:group ref="EG_ContentRowContent" minOccurs="0" maxOccurs="unbounded"/>
|
2537
|
+
</xsd:sequence>
|
2538
|
+
</xsd:complexType>
|
2539
|
+
<xsd:complexType name="CT_TblLook">
|
2540
|
+
<xsd:attribute name="firstRow" type="s:ST_OnOff"/>
|
2541
|
+
<xsd:attribute name="lastRow" type="s:ST_OnOff"/>
|
2542
|
+
<xsd:attribute name="firstColumn" type="s:ST_OnOff"/>
|
2543
|
+
<xsd:attribute name="lastColumn" type="s:ST_OnOff"/>
|
2544
|
+
<xsd:attribute name="noHBand" type="s:ST_OnOff"/>
|
2545
|
+
<xsd:attribute name="noVBand" type="s:ST_OnOff"/>
|
2546
|
+
<xsd:attribute name="val" type="ST_ShortHexNumber"/>
|
2547
|
+
</xsd:complexType>
|
2548
|
+
<xsd:simpleType name="ST_FtnPos">
|
2549
|
+
<xsd:restriction base="xsd:string">
|
2550
|
+
<xsd:enumeration value="pageBottom"/>
|
2551
|
+
<xsd:enumeration value="beneathText"/>
|
2552
|
+
<xsd:enumeration value="sectEnd"/>
|
2553
|
+
<xsd:enumeration value="docEnd"/>
|
2554
|
+
</xsd:restriction>
|
2555
|
+
</xsd:simpleType>
|
2556
|
+
<xsd:complexType name="CT_FtnPos">
|
2557
|
+
<xsd:attribute name="val" type="ST_FtnPos" use="required"/>
|
2558
|
+
</xsd:complexType>
|
2559
|
+
<xsd:simpleType name="ST_EdnPos">
|
2560
|
+
<xsd:restriction base="xsd:string">
|
2561
|
+
<xsd:enumeration value="sectEnd"/>
|
2562
|
+
<xsd:enumeration value="docEnd"/>
|
2563
|
+
</xsd:restriction>
|
2564
|
+
</xsd:simpleType>
|
2565
|
+
<xsd:complexType name="CT_EdnPos">
|
2566
|
+
<xsd:attribute name="val" type="ST_EdnPos" use="required"/>
|
2567
|
+
</xsd:complexType>
|
2568
|
+
<xsd:complexType name="CT_NumFmt">
|
2569
|
+
<xsd:attribute name="val" type="ST_NumberFormat" use="required"/>
|
2570
|
+
<xsd:attribute name="format" type="s:ST_String" use="optional"/>
|
2571
|
+
</xsd:complexType>
|
2572
|
+
<xsd:simpleType name="ST_RestartNumber">
|
2573
|
+
<xsd:restriction base="xsd:string">
|
2574
|
+
<xsd:enumeration value="continuous"/>
|
2575
|
+
<xsd:enumeration value="eachSect"/>
|
2576
|
+
<xsd:enumeration value="eachPage"/>
|
2577
|
+
</xsd:restriction>
|
2578
|
+
</xsd:simpleType>
|
2579
|
+
<xsd:complexType name="CT_NumRestart">
|
2580
|
+
<xsd:attribute name="val" type="ST_RestartNumber" use="required"/>
|
2581
|
+
</xsd:complexType>
|
2582
|
+
<xsd:complexType name="CT_FtnEdnRef">
|
2583
|
+
<xsd:attribute name="customMarkFollows" type="s:ST_OnOff" use="optional"/>
|
2584
|
+
<xsd:attribute name="id" use="required" type="ST_DecimalNumber"/>
|
2585
|
+
</xsd:complexType>
|
2586
|
+
<xsd:complexType name="CT_FtnEdnSepRef">
|
2587
|
+
<xsd:attribute name="id" type="ST_DecimalNumber" use="required"/>
|
2588
|
+
</xsd:complexType>
|
2589
|
+
<xsd:complexType name="CT_FtnEdn">
|
2590
|
+
<xsd:sequence>
|
2591
|
+
<xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/>
|
2592
|
+
</xsd:sequence>
|
2593
|
+
<xsd:attribute name="type" type="ST_FtnEdn" use="optional"/>
|
2594
|
+
<xsd:attribute name="id" type="ST_DecimalNumber" use="required"/>
|
2595
|
+
</xsd:complexType>
|
2596
|
+
<xsd:group name="EG_FtnEdnNumProps">
|
2597
|
+
<xsd:sequence>
|
2598
|
+
<xsd:element name="numStart" type="CT_DecimalNumber" minOccurs="0"/>
|
2599
|
+
<xsd:element name="numRestart" type="CT_NumRestart" minOccurs="0"/>
|
2600
|
+
</xsd:sequence>
|
2601
|
+
</xsd:group>
|
2602
|
+
<xsd:complexType name="CT_FtnProps">
|
2603
|
+
<xsd:sequence>
|
2604
|
+
<xsd:element name="pos" type="CT_FtnPos" minOccurs="0"/>
|
2605
|
+
<xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0"/>
|
2606
|
+
<xsd:group ref="EG_FtnEdnNumProps" minOccurs="0"/>
|
2607
|
+
</xsd:sequence>
|
2608
|
+
</xsd:complexType>
|
2609
|
+
<xsd:complexType name="CT_EdnProps">
|
2610
|
+
<xsd:sequence>
|
2611
|
+
<xsd:element name="pos" type="CT_EdnPos" minOccurs="0"/>
|
2612
|
+
<xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0"/>
|
2613
|
+
<xsd:group ref="EG_FtnEdnNumProps" minOccurs="0"/>
|
2614
|
+
</xsd:sequence>
|
2615
|
+
</xsd:complexType>
|
2616
|
+
<xsd:complexType name="CT_FtnDocProps">
|
2617
|
+
<xsd:complexContent>
|
2618
|
+
<xsd:extension base="CT_FtnProps">
|
2619
|
+
<xsd:sequence>
|
2620
|
+
<xsd:element name="footnote" type="CT_FtnEdnSepRef" minOccurs="0" maxOccurs="3"/>
|
2621
|
+
</xsd:sequence>
|
2622
|
+
</xsd:extension>
|
2623
|
+
</xsd:complexContent>
|
2624
|
+
</xsd:complexType>
|
2625
|
+
<xsd:complexType name="CT_EdnDocProps">
|
2626
|
+
<xsd:complexContent>
|
2627
|
+
<xsd:extension base="CT_EdnProps">
|
2628
|
+
<xsd:sequence>
|
2629
|
+
<xsd:element name="endnote" type="CT_FtnEdnSepRef" minOccurs="0" maxOccurs="3"/>
|
2630
|
+
</xsd:sequence>
|
2631
|
+
</xsd:extension>
|
2632
|
+
</xsd:complexContent>
|
2633
|
+
</xsd:complexType>
|
2634
|
+
<xsd:complexType name="CT_RecipientData">
|
2635
|
+
<xsd:sequence>
|
2636
|
+
<xsd:element name="active" type="CT_OnOff" minOccurs="0"/>
|
2637
|
+
<xsd:element name="column" type="CT_DecimalNumber" minOccurs="1"/>
|
2638
|
+
<xsd:element name="uniqueTag" type="CT_Base64Binary" minOccurs="1"/>
|
2639
|
+
</xsd:sequence>
|
2640
|
+
</xsd:complexType>
|
2641
|
+
<xsd:complexType name="CT_Base64Binary">
|
2642
|
+
<xsd:attribute name="val" type="xsd:base64Binary" use="required"/>
|
2643
|
+
</xsd:complexType>
|
2644
|
+
<xsd:complexType name="CT_Recipients">
|
2645
|
+
<xsd:sequence>
|
2646
|
+
<xsd:element name="recipientData" type="CT_RecipientData" minOccurs="1" maxOccurs="unbounded"
|
2647
|
+
/>
|
2648
|
+
</xsd:sequence>
|
2649
|
+
</xsd:complexType>
|
2650
|
+
<xsd:element name="recipients" type="CT_Recipients"/>
|
2651
|
+
<xsd:complexType name="CT_OdsoFieldMapData">
|
2652
|
+
<xsd:sequence>
|
2653
|
+
<xsd:element name="type" type="CT_MailMergeOdsoFMDFieldType" minOccurs="0"/>
|
2654
|
+
<xsd:element name="name" type="CT_String" minOccurs="0"/>
|
2655
|
+
<xsd:element name="mappedName" type="CT_String" minOccurs="0"/>
|
2656
|
+
<xsd:element name="column" type="CT_DecimalNumber" minOccurs="0"/>
|
2657
|
+
<xsd:element name="lid" type="CT_Lang" minOccurs="0"/>
|
2658
|
+
<xsd:element name="dynamicAddress" type="CT_OnOff" minOccurs="0"/>
|
2659
|
+
</xsd:sequence>
|
2660
|
+
</xsd:complexType>
|
2661
|
+
<xsd:simpleType name="ST_MailMergeSourceType">
|
2662
|
+
<xsd:restriction base="xsd:string">
|
2663
|
+
<xsd:enumeration value="database"/>
|
2664
|
+
<xsd:enumeration value="addressBook"/>
|
2665
|
+
<xsd:enumeration value="document1"/>
|
2666
|
+
<xsd:enumeration value="document2"/>
|
2667
|
+
<xsd:enumeration value="text"/>
|
2668
|
+
<xsd:enumeration value="email"/>
|
2669
|
+
<xsd:enumeration value="native"/>
|
2670
|
+
<xsd:enumeration value="legacy"/>
|
2671
|
+
<xsd:enumeration value="master"/>
|
2672
|
+
</xsd:restriction>
|
2673
|
+
</xsd:simpleType>
|
2674
|
+
<xsd:complexType name="CT_MailMergeSourceType">
|
2675
|
+
<xsd:attribute name="val" use="required" type="ST_MailMergeSourceType"/>
|
2676
|
+
</xsd:complexType>
|
2677
|
+
<xsd:complexType name="CT_Odso">
|
2678
|
+
<xsd:sequence>
|
2679
|
+
<xsd:element name="udl" type="CT_String" minOccurs="0"/>
|
2680
|
+
<xsd:element name="table" type="CT_String" minOccurs="0"/>
|
2681
|
+
<xsd:element name="src" type="CT_Rel" minOccurs="0"/>
|
2682
|
+
<xsd:element name="colDelim" type="CT_DecimalNumber" minOccurs="0"/>
|
2683
|
+
<xsd:element name="type" type="CT_MailMergeSourceType" minOccurs="0"/>
|
2684
|
+
<xsd:element name="fHdr" type="CT_OnOff" minOccurs="0"/>
|
2685
|
+
<xsd:element name="fieldMapData" type="CT_OdsoFieldMapData" minOccurs="0"
|
2686
|
+
maxOccurs="unbounded"/>
|
2687
|
+
<xsd:element name="recipientData" type="CT_Rel" minOccurs="0" maxOccurs="unbounded"/>
|
2688
|
+
</xsd:sequence>
|
2689
|
+
</xsd:complexType>
|
2690
|
+
<xsd:complexType name="CT_MailMerge">
|
2691
|
+
<xsd:sequence>
|
2692
|
+
<xsd:element name="mainDocumentType" type="CT_MailMergeDocType" minOccurs="1"/>
|
2693
|
+
<xsd:element name="linkToQuery" type="CT_OnOff" minOccurs="0"/>
|
2694
|
+
<xsd:element name="dataType" type="CT_MailMergeDataType" minOccurs="1"/>
|
2695
|
+
<xsd:element name="connectString" type="CT_String" minOccurs="0"/>
|
2696
|
+
<xsd:element name="query" type="CT_String" minOccurs="0"/>
|
2697
|
+
<xsd:element name="dataSource" type="CT_Rel" minOccurs="0"/>
|
2698
|
+
<xsd:element name="headerSource" type="CT_Rel" minOccurs="0"/>
|
2699
|
+
<xsd:element name="doNotSuppressBlankLines" type="CT_OnOff" minOccurs="0"/>
|
2700
|
+
<xsd:element name="destination" type="CT_MailMergeDest" minOccurs="0"/>
|
2701
|
+
<xsd:element name="addressFieldName" type="CT_String" minOccurs="0"/>
|
2702
|
+
<xsd:element name="mailSubject" type="CT_String" minOccurs="0"/>
|
2703
|
+
<xsd:element name="mailAsAttachment" type="CT_OnOff" minOccurs="0"/>
|
2704
|
+
<xsd:element name="viewMergedData" type="CT_OnOff" minOccurs="0"/>
|
2705
|
+
<xsd:element name="activeRecord" type="CT_DecimalNumber" minOccurs="0"/>
|
2706
|
+
<xsd:element name="checkErrors" type="CT_DecimalNumber" minOccurs="0"/>
|
2707
|
+
<xsd:element name="odso" type="CT_Odso" minOccurs="0"/>
|
2708
|
+
</xsd:sequence>
|
2709
|
+
</xsd:complexType>
|
2710
|
+
<xsd:simpleType name="ST_TargetScreenSz">
|
2711
|
+
<xsd:restriction base="xsd:string">
|
2712
|
+
<xsd:enumeration value="544x376"/>
|
2713
|
+
<xsd:enumeration value="640x480"/>
|
2714
|
+
<xsd:enumeration value="720x512"/>
|
2715
|
+
<xsd:enumeration value="800x600"/>
|
2716
|
+
<xsd:enumeration value="1024x768"/>
|
2717
|
+
<xsd:enumeration value="1152x882"/>
|
2718
|
+
<xsd:enumeration value="1152x900"/>
|
2719
|
+
<xsd:enumeration value="1280x1024"/>
|
2720
|
+
<xsd:enumeration value="1600x1200"/>
|
2721
|
+
<xsd:enumeration value="1800x1440"/>
|
2722
|
+
<xsd:enumeration value="1920x1200"/>
|
2723
|
+
</xsd:restriction>
|
2724
|
+
</xsd:simpleType>
|
2725
|
+
<xsd:complexType name="CT_TargetScreenSz">
|
2726
|
+
<xsd:attribute name="val" type="ST_TargetScreenSz" use="required"/>
|
2727
|
+
</xsd:complexType>
|
2728
|
+
<xsd:complexType name="CT_Compat">
|
2729
|
+
<xsd:sequence>
|
2730
|
+
<xsd:element name="useSingleBorderforContiguousCells" type="CT_OnOff" minOccurs="0"/>
|
2731
|
+
<xsd:element name="wpJustification" type="CT_OnOff" minOccurs="0"/>
|
2732
|
+
<xsd:element name="noTabHangInd" type="CT_OnOff" minOccurs="0"/>
|
2733
|
+
<xsd:element name="noLeading" type="CT_OnOff" minOccurs="0"/>
|
2734
|
+
<xsd:element name="spaceForUL" type="CT_OnOff" minOccurs="0"/>
|
2735
|
+
<xsd:element name="noColumnBalance" type="CT_OnOff" minOccurs="0"/>
|
2736
|
+
<xsd:element name="balanceSingleByteDoubleByteWidth" type="CT_OnOff" minOccurs="0"/>
|
2737
|
+
<xsd:element name="noExtraLineSpacing" type="CT_OnOff" minOccurs="0"/>
|
2738
|
+
<xsd:element name="doNotLeaveBackslashAlone" type="CT_OnOff" minOccurs="0"/>
|
2739
|
+
<xsd:element name="ulTrailSpace" type="CT_OnOff" minOccurs="0"/>
|
2740
|
+
<xsd:element name="doNotExpandShiftReturn" type="CT_OnOff" minOccurs="0"/>
|
2741
|
+
<xsd:element name="spacingInWholePoints" type="CT_OnOff" minOccurs="0"/>
|
2742
|
+
<xsd:element name="lineWrapLikeWord6" type="CT_OnOff" minOccurs="0"/>
|
2743
|
+
<xsd:element name="printBodyTextBeforeHeader" type="CT_OnOff" minOccurs="0"/>
|
2744
|
+
<xsd:element name="printColBlack" type="CT_OnOff" minOccurs="0"/>
|
2745
|
+
<xsd:element name="wpSpaceWidth" type="CT_OnOff" minOccurs="0"/>
|
2746
|
+
<xsd:element name="showBreaksInFrames" type="CT_OnOff" minOccurs="0"/>
|
2747
|
+
<xsd:element name="subFontBySize" type="CT_OnOff" minOccurs="0"/>
|
2748
|
+
<xsd:element name="suppressBottomSpacing" type="CT_OnOff" minOccurs="0"/>
|
2749
|
+
<xsd:element name="suppressTopSpacing" type="CT_OnOff" minOccurs="0"/>
|
2750
|
+
<xsd:element name="suppressSpacingAtTopOfPage" type="CT_OnOff" minOccurs="0"/>
|
2751
|
+
<xsd:element name="suppressTopSpacingWP" type="CT_OnOff" minOccurs="0"/>
|
2752
|
+
<xsd:element name="suppressSpBfAfterPgBrk" type="CT_OnOff" minOccurs="0"/>
|
2753
|
+
<xsd:element name="swapBordersFacingPages" type="CT_OnOff" minOccurs="0"/>
|
2754
|
+
<xsd:element name="convMailMergeEsc" type="CT_OnOff" minOccurs="0"/>
|
2755
|
+
<xsd:element name="truncateFontHeightsLikeWP6" type="CT_OnOff" minOccurs="0"/>
|
2756
|
+
<xsd:element name="mwSmallCaps" type="CT_OnOff" minOccurs="0"/>
|
2757
|
+
<xsd:element name="usePrinterMetrics" type="CT_OnOff" minOccurs="0"/>
|
2758
|
+
<xsd:element name="doNotSuppressParagraphBorders" type="CT_OnOff" minOccurs="0"/>
|
2759
|
+
<xsd:element name="wrapTrailSpaces" type="CT_OnOff" minOccurs="0"/>
|
2760
|
+
<xsd:element name="footnoteLayoutLikeWW8" type="CT_OnOff" minOccurs="0"/>
|
2761
|
+
<xsd:element name="shapeLayoutLikeWW8" type="CT_OnOff" minOccurs="0"/>
|
2762
|
+
<xsd:element name="alignTablesRowByRow" type="CT_OnOff" minOccurs="0"/>
|
2763
|
+
<xsd:element name="forgetLastTabAlignment" type="CT_OnOff" minOccurs="0"/>
|
2764
|
+
<xsd:element name="adjustLineHeightInTable" type="CT_OnOff" minOccurs="0"/>
|
2765
|
+
<xsd:element name="autoSpaceLikeWord95" type="CT_OnOff" minOccurs="0"/>
|
2766
|
+
<xsd:element name="noSpaceRaiseLower" type="CT_OnOff" minOccurs="0"/>
|
2767
|
+
<xsd:element name="doNotUseHTMLParagraphAutoSpacing" type="CT_OnOff" minOccurs="0"/>
|
2768
|
+
<xsd:element name="layoutRawTableWidth" type="CT_OnOff" minOccurs="0"/>
|
2769
|
+
<xsd:element name="layoutTableRowsApart" type="CT_OnOff" minOccurs="0"/>
|
2770
|
+
<xsd:element name="useWord97LineBreakRules" type="CT_OnOff" minOccurs="0"/>
|
2771
|
+
<xsd:element name="doNotBreakWrappedTables" type="CT_OnOff" minOccurs="0"/>
|
2772
|
+
<xsd:element name="doNotSnapToGridInCell" type="CT_OnOff" minOccurs="0"/>
|
2773
|
+
<xsd:element name="selectFldWithFirstOrLastChar" type="CT_OnOff" minOccurs="0"/>
|
2774
|
+
<xsd:element name="applyBreakingRules" type="CT_OnOff" minOccurs="0"/>
|
2775
|
+
<xsd:element name="doNotWrapTextWithPunct" type="CT_OnOff" minOccurs="0"/>
|
2776
|
+
<xsd:element name="doNotUseEastAsianBreakRules" type="CT_OnOff" minOccurs="0"/>
|
2777
|
+
<xsd:element name="useWord2002TableStyleRules" type="CT_OnOff" minOccurs="0"/>
|
2778
|
+
<xsd:element name="growAutofit" type="CT_OnOff" minOccurs="0"/>
|
2779
|
+
<xsd:element name="useFELayout" type="CT_OnOff" minOccurs="0"/>
|
2780
|
+
<xsd:element name="useNormalStyleForList" type="CT_OnOff" minOccurs="0"/>
|
2781
|
+
<xsd:element name="doNotUseIndentAsNumberingTabStop" type="CT_OnOff" minOccurs="0"/>
|
2782
|
+
<xsd:element name="useAltKinsokuLineBreakRules" type="CT_OnOff" minOccurs="0"/>
|
2783
|
+
<xsd:element name="allowSpaceOfSameStyleInTable" type="CT_OnOff" minOccurs="0"/>
|
2784
|
+
<xsd:element name="doNotSuppressIndentation" type="CT_OnOff" minOccurs="0"/>
|
2785
|
+
<xsd:element name="doNotAutofitConstrainedTables" type="CT_OnOff" minOccurs="0"/>
|
2786
|
+
<xsd:element name="autofitToFirstFixedWidthCell" type="CT_OnOff" minOccurs="0"/>
|
2787
|
+
<xsd:element name="underlineTabInNumList" type="CT_OnOff" minOccurs="0"/>
|
2788
|
+
<xsd:element name="displayHangulFixedWidth" type="CT_OnOff" minOccurs="0"/>
|
2789
|
+
<xsd:element name="splitPgBreakAndParaMark" type="CT_OnOff" minOccurs="0"/>
|
2790
|
+
<xsd:element name="doNotVertAlignCellWithSp" type="CT_OnOff" minOccurs="0"/>
|
2791
|
+
<xsd:element name="doNotBreakConstrainedForcedTable" type="CT_OnOff" minOccurs="0"/>
|
2792
|
+
<xsd:element name="doNotVertAlignInTxbx" type="CT_OnOff" minOccurs="0"/>
|
2793
|
+
<xsd:element name="useAnsiKerningPairs" type="CT_OnOff" minOccurs="0"/>
|
2794
|
+
<xsd:element name="cachedColBalance" type="CT_OnOff" minOccurs="0"/>
|
2795
|
+
<xsd:element name="compatSetting" type="CT_CompatSetting" minOccurs="0" maxOccurs="unbounded"
|
2796
|
+
/>
|
2797
|
+
</xsd:sequence>
|
2798
|
+
</xsd:complexType>
|
2799
|
+
<xsd:complexType name="CT_CompatSetting">
|
2800
|
+
<xsd:attribute name="name" type="s:ST_String"/>
|
2801
|
+
<xsd:attribute name="uri" type="s:ST_String"/>
|
2802
|
+
<xsd:attribute name="val" type="s:ST_String"/>
|
2803
|
+
</xsd:complexType>
|
2804
|
+
<xsd:complexType name="CT_DocVar">
|
2805
|
+
<xsd:attribute name="name" type="s:ST_String" use="required"/>
|
2806
|
+
<xsd:attribute name="val" type="s:ST_String" use="required"/>
|
2807
|
+
</xsd:complexType>
|
2808
|
+
<xsd:complexType name="CT_DocVars">
|
2809
|
+
<xsd:sequence>
|
2810
|
+
<xsd:element name="docVar" type="CT_DocVar" minOccurs="0" maxOccurs="unbounded"/>
|
2811
|
+
</xsd:sequence>
|
2812
|
+
</xsd:complexType>
|
2813
|
+
<xsd:complexType name="CT_DocRsids">
|
2814
|
+
<xsd:sequence>
|
2815
|
+
<xsd:element name="rsidRoot" type="CT_LongHexNumber" minOccurs="0" maxOccurs="1"/>
|
2816
|
+
<xsd:element name="rsid" type="CT_LongHexNumber" minOccurs="0" maxOccurs="unbounded"/>
|
2817
|
+
</xsd:sequence>
|
2818
|
+
</xsd:complexType>
|
2819
|
+
<xsd:simpleType name="ST_CharacterSpacing">
|
2820
|
+
<xsd:restriction base="xsd:string">
|
2821
|
+
<xsd:enumeration value="doNotCompress"/>
|
2822
|
+
<xsd:enumeration value="compressPunctuation"/>
|
2823
|
+
<xsd:enumeration value="compressPunctuationAndJapaneseKana"/>
|
2824
|
+
</xsd:restriction>
|
2825
|
+
</xsd:simpleType>
|
2826
|
+
<xsd:complexType name="CT_CharacterSpacing">
|
2827
|
+
<xsd:attribute name="val" type="ST_CharacterSpacing" use="required"/>
|
2828
|
+
</xsd:complexType>
|
2829
|
+
<xsd:complexType name="CT_SaveThroughXslt">
|
2830
|
+
<xsd:attribute ref="r:id" use="optional"/>
|
2831
|
+
<xsd:attribute name="solutionID" type="s:ST_String" use="optional"/>
|
2832
|
+
</xsd:complexType>
|
2833
|
+
<xsd:complexType name="CT_RPrDefault">
|
2834
|
+
<xsd:sequence>
|
2835
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="0"/>
|
2836
|
+
</xsd:sequence>
|
2837
|
+
</xsd:complexType>
|
2838
|
+
<xsd:complexType name="CT_PPrDefault">
|
2839
|
+
<xsd:sequence>
|
2840
|
+
<xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0"/>
|
2841
|
+
</xsd:sequence>
|
2842
|
+
</xsd:complexType>
|
2843
|
+
<xsd:complexType name="CT_DocDefaults">
|
2844
|
+
<xsd:sequence>
|
2845
|
+
<xsd:element name="rPrDefault" type="CT_RPrDefault" minOccurs="0"/>
|
2846
|
+
<xsd:element name="pPrDefault" type="CT_PPrDefault" minOccurs="0"/>
|
2847
|
+
</xsd:sequence>
|
2848
|
+
</xsd:complexType>
|
2849
|
+
<xsd:simpleType name="ST_WmlColorSchemeIndex">
|
2850
|
+
<xsd:restriction base="xsd:string">
|
2851
|
+
<xsd:enumeration value="dark1"/>
|
2852
|
+
<xsd:enumeration value="light1"/>
|
2853
|
+
<xsd:enumeration value="dark2"/>
|
2854
|
+
<xsd:enumeration value="light2"/>
|
2855
|
+
<xsd:enumeration value="accent1"/>
|
2856
|
+
<xsd:enumeration value="accent2"/>
|
2857
|
+
<xsd:enumeration value="accent3"/>
|
2858
|
+
<xsd:enumeration value="accent4"/>
|
2859
|
+
<xsd:enumeration value="accent5"/>
|
2860
|
+
<xsd:enumeration value="accent6"/>
|
2861
|
+
<xsd:enumeration value="hyperlink"/>
|
2862
|
+
<xsd:enumeration value="followedHyperlink"/>
|
2863
|
+
</xsd:restriction>
|
2864
|
+
</xsd:simpleType>
|
2865
|
+
<xsd:complexType name="CT_ColorSchemeMapping">
|
2866
|
+
<xsd:attribute name="bg1" type="ST_WmlColorSchemeIndex"/>
|
2867
|
+
<xsd:attribute name="t1" type="ST_WmlColorSchemeIndex"/>
|
2868
|
+
<xsd:attribute name="bg2" type="ST_WmlColorSchemeIndex"/>
|
2869
|
+
<xsd:attribute name="t2" type="ST_WmlColorSchemeIndex"/>
|
2870
|
+
<xsd:attribute name="accent1" type="ST_WmlColorSchemeIndex"/>
|
2871
|
+
<xsd:attribute name="accent2" type="ST_WmlColorSchemeIndex"/>
|
2872
|
+
<xsd:attribute name="accent3" type="ST_WmlColorSchemeIndex"/>
|
2873
|
+
<xsd:attribute name="accent4" type="ST_WmlColorSchemeIndex"/>
|
2874
|
+
<xsd:attribute name="accent5" type="ST_WmlColorSchemeIndex"/>
|
2875
|
+
<xsd:attribute name="accent6" type="ST_WmlColorSchemeIndex"/>
|
2876
|
+
<xsd:attribute name="hyperlink" type="ST_WmlColorSchemeIndex"/>
|
2877
|
+
<xsd:attribute name="followedHyperlink" type="ST_WmlColorSchemeIndex"/>
|
2878
|
+
</xsd:complexType>
|
2879
|
+
<xsd:complexType name="CT_ReadingModeInkLockDown">
|
2880
|
+
<xsd:attribute name="actualPg" type="s:ST_OnOff" use="required"/>
|
2881
|
+
<xsd:attribute name="w" type="ST_PixelsMeasure" use="required"/>
|
2882
|
+
<xsd:attribute name="h" type="ST_PixelsMeasure" use="required"/>
|
2883
|
+
<xsd:attribute name="fontSz" type="ST_DecimalNumberOrPercent" use="required"/>
|
2884
|
+
</xsd:complexType>
|
2885
|
+
<xsd:complexType name="CT_WriteProtection">
|
2886
|
+
<xsd:attribute name="recommended" type="s:ST_OnOff" use="optional"/>
|
2887
|
+
<xsd:attributeGroup ref="AG_Password"/>
|
2888
|
+
<xsd:attributeGroup ref="AG_TransitionalPassword"/>
|
2889
|
+
</xsd:complexType>
|
2890
|
+
<xsd:complexType name="CT_Settings">
|
2891
|
+
<xsd:sequence>
|
2892
|
+
<xsd:element name="writeProtection" type="CT_WriteProtection" minOccurs="0"/>
|
2893
|
+
<xsd:element name="view" type="CT_View" minOccurs="0"/>
|
2894
|
+
<xsd:element name="zoom" type="CT_Zoom" minOccurs="0"/>
|
2895
|
+
<xsd:element name="removePersonalInformation" type="CT_OnOff" minOccurs="0"/>
|
2896
|
+
<xsd:element name="removeDateAndTime" type="CT_OnOff" minOccurs="0"/>
|
2897
|
+
<xsd:element name="doNotDisplayPageBoundaries" type="CT_OnOff" minOccurs="0"/>
|
2898
|
+
<xsd:element name="displayBackgroundShape" type="CT_OnOff" minOccurs="0"/>
|
2899
|
+
<xsd:element name="printPostScriptOverText" type="CT_OnOff" minOccurs="0"/>
|
2900
|
+
<xsd:element name="printFractionalCharacterWidth" type="CT_OnOff" minOccurs="0"/>
|
2901
|
+
<xsd:element name="printFormsData" type="CT_OnOff" minOccurs="0"/>
|
2902
|
+
<xsd:element name="embedTrueTypeFonts" type="CT_OnOff" minOccurs="0"/>
|
2903
|
+
<xsd:element name="embedSystemFonts" type="CT_OnOff" minOccurs="0"/>
|
2904
|
+
<xsd:element name="saveSubsetFonts" type="CT_OnOff" minOccurs="0"/>
|
2905
|
+
<xsd:element name="saveFormsData" type="CT_OnOff" minOccurs="0"/>
|
2906
|
+
<xsd:element name="mirrorMargins" type="CT_OnOff" minOccurs="0"/>
|
2907
|
+
<xsd:element name="alignBordersAndEdges" type="CT_OnOff" minOccurs="0"/>
|
2908
|
+
<xsd:element name="bordersDoNotSurroundHeader" type="CT_OnOff" minOccurs="0"/>
|
2909
|
+
<xsd:element name="bordersDoNotSurroundFooter" type="CT_OnOff" minOccurs="0"/>
|
2910
|
+
<xsd:element name="gutterAtTop" type="CT_OnOff" minOccurs="0"/>
|
2911
|
+
<xsd:element name="hideSpellingErrors" type="CT_OnOff" minOccurs="0"/>
|
2912
|
+
<xsd:element name="hideGrammaticalErrors" type="CT_OnOff" minOccurs="0"/>
|
2913
|
+
<xsd:element name="activeWritingStyle" type="CT_WritingStyle" minOccurs="0"
|
2914
|
+
maxOccurs="unbounded"/>
|
2915
|
+
<xsd:element name="proofState" type="CT_Proof" minOccurs="0"/>
|
2916
|
+
<xsd:element name="formsDesign" type="CT_OnOff" minOccurs="0"/>
|
2917
|
+
<xsd:element name="attachedTemplate" type="CT_Rel" minOccurs="0"/>
|
2918
|
+
<xsd:element name="linkStyles" type="CT_OnOff" minOccurs="0"/>
|
2919
|
+
<xsd:element name="stylePaneFormatFilter" type="CT_StylePaneFilter" minOccurs="0"/>
|
2920
|
+
<xsd:element name="stylePaneSortMethod" type="CT_StyleSort" minOccurs="0"/>
|
2921
|
+
<xsd:element name="documentType" type="CT_DocType" minOccurs="0"/>
|
2922
|
+
<xsd:element name="mailMerge" type="CT_MailMerge" minOccurs="0"/>
|
2923
|
+
<xsd:element name="revisionView" type="CT_TrackChangesView" minOccurs="0"/>
|
2924
|
+
<xsd:element name="trackRevisions" type="CT_OnOff" minOccurs="0"/>
|
2925
|
+
<xsd:element name="doNotTrackMoves" type="CT_OnOff" minOccurs="0"/>
|
2926
|
+
<xsd:element name="doNotTrackFormatting" type="CT_OnOff" minOccurs="0"/>
|
2927
|
+
<xsd:element name="documentProtection" type="CT_DocProtect" minOccurs="0"/>
|
2928
|
+
<xsd:element name="autoFormatOverride" type="CT_OnOff" minOccurs="0"/>
|
2929
|
+
<xsd:element name="styleLockTheme" type="CT_OnOff" minOccurs="0"/>
|
2930
|
+
<xsd:element name="styleLockQFSet" type="CT_OnOff" minOccurs="0"/>
|
2931
|
+
<xsd:element name="defaultTabStop" type="CT_TwipsMeasure" minOccurs="0"/>
|
2932
|
+
<xsd:element name="autoHyphenation" type="CT_OnOff" minOccurs="0"/>
|
2933
|
+
<xsd:element name="consecutiveHyphenLimit" type="CT_DecimalNumber" minOccurs="0"/>
|
2934
|
+
<xsd:element name="hyphenationZone" type="CT_TwipsMeasure" minOccurs="0"/>
|
2935
|
+
<xsd:element name="doNotHyphenateCaps" type="CT_OnOff" minOccurs="0"/>
|
2936
|
+
<xsd:element name="showEnvelope" type="CT_OnOff" minOccurs="0"/>
|
2937
|
+
<xsd:element name="summaryLength" type="CT_DecimalNumberOrPrecent" minOccurs="0"/>
|
2938
|
+
<xsd:element name="clickAndTypeStyle" type="CT_String" minOccurs="0"/>
|
2939
|
+
<xsd:element name="defaultTableStyle" type="CT_String" minOccurs="0"/>
|
2940
|
+
<xsd:element name="evenAndOddHeaders" type="CT_OnOff" minOccurs="0"/>
|
2941
|
+
<xsd:element name="bookFoldRevPrinting" type="CT_OnOff" minOccurs="0"/>
|
2942
|
+
<xsd:element name="bookFoldPrinting" type="CT_OnOff" minOccurs="0"/>
|
2943
|
+
<xsd:element name="bookFoldPrintingSheets" type="CT_DecimalNumber" minOccurs="0"/>
|
2944
|
+
<xsd:element name="drawingGridHorizontalSpacing" type="CT_TwipsMeasure" minOccurs="0"/>
|
2945
|
+
<xsd:element name="drawingGridVerticalSpacing" type="CT_TwipsMeasure" minOccurs="0"/>
|
2946
|
+
<xsd:element name="displayHorizontalDrawingGridEvery" type="CT_DecimalNumber" minOccurs="0"/>
|
2947
|
+
<xsd:element name="displayVerticalDrawingGridEvery" type="CT_DecimalNumber" minOccurs="0"/>
|
2948
|
+
<xsd:element name="doNotUseMarginsForDrawingGridOrigin" type="CT_OnOff" minOccurs="0"/>
|
2949
|
+
<xsd:element name="drawingGridHorizontalOrigin" type="CT_TwipsMeasure" minOccurs="0"/>
|
2950
|
+
<xsd:element name="drawingGridVerticalOrigin" type="CT_TwipsMeasure" minOccurs="0"/>
|
2951
|
+
<xsd:element name="doNotShadeFormData" type="CT_OnOff" minOccurs="0"/>
|
2952
|
+
<xsd:element name="noPunctuationKerning" type="CT_OnOff" minOccurs="0"/>
|
2953
|
+
<xsd:element name="characterSpacingControl" type="CT_CharacterSpacing" minOccurs="0"/>
|
2954
|
+
<xsd:element name="printTwoOnOne" type="CT_OnOff" minOccurs="0"/>
|
2955
|
+
<xsd:element name="strictFirstAndLastChars" type="CT_OnOff" minOccurs="0"/>
|
2956
|
+
<xsd:element name="noLineBreaksAfter" type="CT_Kinsoku" minOccurs="0"/>
|
2957
|
+
<xsd:element name="noLineBreaksBefore" type="CT_Kinsoku" minOccurs="0"/>
|
2958
|
+
<xsd:element name="savePreviewPicture" type="CT_OnOff" minOccurs="0"/>
|
2959
|
+
<xsd:element name="doNotValidateAgainstSchema" type="CT_OnOff" minOccurs="0"/>
|
2960
|
+
<xsd:element name="saveInvalidXml" type="CT_OnOff" minOccurs="0"/>
|
2961
|
+
<xsd:element name="ignoreMixedContent" type="CT_OnOff" minOccurs="0"/>
|
2962
|
+
<xsd:element name="alwaysShowPlaceholderText" type="CT_OnOff" minOccurs="0"/>
|
2963
|
+
<xsd:element name="doNotDemarcateInvalidXml" type="CT_OnOff" minOccurs="0"/>
|
2964
|
+
<xsd:element name="saveXmlDataOnly" type="CT_OnOff" minOccurs="0"/>
|
2965
|
+
<xsd:element name="useXSLTWhenSaving" type="CT_OnOff" minOccurs="0"/>
|
2966
|
+
<xsd:element name="saveThroughXslt" type="CT_SaveThroughXslt" minOccurs="0"/>
|
2967
|
+
<xsd:element name="showXMLTags" type="CT_OnOff" minOccurs="0"/>
|
2968
|
+
<xsd:element name="alwaysMergeEmptyNamespace" type="CT_OnOff" minOccurs="0"/>
|
2969
|
+
<xsd:element name="updateFields" type="CT_OnOff" minOccurs="0"/>
|
2970
|
+
<xsd:element name="hdrShapeDefaults" type="CT_ShapeDefaults" minOccurs="0"/>
|
2971
|
+
<xsd:element name="footnotePr" type="CT_FtnDocProps" minOccurs="0"/>
|
2972
|
+
<xsd:element name="endnotePr" type="CT_EdnDocProps" minOccurs="0"/>
|
2973
|
+
<xsd:element name="compat" type="CT_Compat" minOccurs="0"/>
|
2974
|
+
<xsd:element name="docVars" type="CT_DocVars" minOccurs="0"/>
|
2975
|
+
<xsd:element name="rsids" type="CT_DocRsids" minOccurs="0"/>
|
2976
|
+
<xsd:element ref="m:mathPr" minOccurs="0" maxOccurs="1"/>
|
2977
|
+
<xsd:element name="attachedSchema" type="CT_String" minOccurs="0" maxOccurs="unbounded"/>
|
2978
|
+
<xsd:element name="themeFontLang" type="CT_Language" minOccurs="0" maxOccurs="1"/>
|
2979
|
+
<xsd:element name="clrSchemeMapping" type="CT_ColorSchemeMapping" minOccurs="0"/>
|
2980
|
+
<xsd:element name="doNotIncludeSubdocsInStats" type="CT_OnOff" minOccurs="0"/>
|
2981
|
+
<xsd:element name="doNotAutoCompressPictures" type="CT_OnOff" minOccurs="0"/>
|
2982
|
+
<xsd:element name="forceUpgrade" type="CT_Empty" minOccurs="0" maxOccurs="1"/>
|
2983
|
+
<xsd:element name="captions" type="CT_Captions" minOccurs="0" maxOccurs="1"/>
|
2984
|
+
<xsd:element name="readModeInkLockDown" type="CT_ReadingModeInkLockDown" minOccurs="0"/>
|
2985
|
+
<xsd:element name="smartTagType" type="CT_SmartTagType" minOccurs="0" maxOccurs="unbounded"/>
|
2986
|
+
<xsd:element ref="sl:schemaLibrary" minOccurs="0" maxOccurs="1"/>
|
2987
|
+
<xsd:element name="shapeDefaults" type="CT_ShapeDefaults" minOccurs="0"/>
|
2988
|
+
<xsd:element name="doNotEmbedSmartTags" type="CT_OnOff" minOccurs="0"/>
|
2989
|
+
<xsd:element name="decimalSymbol" type="CT_String" minOccurs="0" maxOccurs="1"/>
|
2990
|
+
<xsd:element name="listSeparator" type="CT_String" minOccurs="0" maxOccurs="1"/>
|
2991
|
+
</xsd:sequence>
|
2992
|
+
</xsd:complexType>
|
2993
|
+
<xsd:complexType name="CT_StyleSort">
|
2994
|
+
<xsd:attribute name="val" type="ST_StyleSort" use="required"/>
|
2995
|
+
</xsd:complexType>
|
2996
|
+
<xsd:complexType name="CT_StylePaneFilter">
|
2997
|
+
<xsd:attribute name="allStyles" type="s:ST_OnOff"/>
|
2998
|
+
<xsd:attribute name="customStyles" type="s:ST_OnOff"/>
|
2999
|
+
<xsd:attribute name="latentStyles" type="s:ST_OnOff"/>
|
3000
|
+
<xsd:attribute name="stylesInUse" type="s:ST_OnOff"/>
|
3001
|
+
<xsd:attribute name="headingStyles" type="s:ST_OnOff"/>
|
3002
|
+
<xsd:attribute name="numberingStyles" type="s:ST_OnOff"/>
|
3003
|
+
<xsd:attribute name="tableStyles" type="s:ST_OnOff"/>
|
3004
|
+
<xsd:attribute name="directFormattingOnRuns" type="s:ST_OnOff"/>
|
3005
|
+
<xsd:attribute name="directFormattingOnParagraphs" type="s:ST_OnOff"/>
|
3006
|
+
<xsd:attribute name="directFormattingOnNumbering" type="s:ST_OnOff"/>
|
3007
|
+
<xsd:attribute name="directFormattingOnTables" type="s:ST_OnOff"/>
|
3008
|
+
<xsd:attribute name="clearFormatting" type="s:ST_OnOff"/>
|
3009
|
+
<xsd:attribute name="top3HeadingStyles" type="s:ST_OnOff"/>
|
3010
|
+
<xsd:attribute name="visibleStyles" type="s:ST_OnOff"/>
|
3011
|
+
<xsd:attribute name="alternateStyleNames" type="s:ST_OnOff"/>
|
3012
|
+
<xsd:attribute name="val" type="ST_ShortHexNumber"/>
|
3013
|
+
</xsd:complexType>
|
3014
|
+
<xsd:simpleType name="ST_StyleSort">
|
3015
|
+
<xsd:restriction base="xsd:string">
|
3016
|
+
<xsd:enumeration value="name"/>
|
3017
|
+
<xsd:enumeration value="priority"/>
|
3018
|
+
<xsd:enumeration value="default"/>
|
3019
|
+
<xsd:enumeration value="font"/>
|
3020
|
+
<xsd:enumeration value="basedOn"/>
|
3021
|
+
<xsd:enumeration value="type"/>
|
3022
|
+
<xsd:enumeration value="0000"/>
|
3023
|
+
<xsd:enumeration value="0001"/>
|
3024
|
+
<xsd:enumeration value="0002"/>
|
3025
|
+
<xsd:enumeration value="0003"/>
|
3026
|
+
<xsd:enumeration value="0004"/>
|
3027
|
+
<xsd:enumeration value="0005"/>
|
3028
|
+
</xsd:restriction>
|
3029
|
+
</xsd:simpleType>
|
3030
|
+
<xsd:complexType name="CT_WebSettings">
|
3031
|
+
<xsd:sequence>
|
3032
|
+
<xsd:element name="frameset" type="CT_Frameset" minOccurs="0"/>
|
3033
|
+
<xsd:element name="divs" type="CT_Divs" minOccurs="0"/>
|
3034
|
+
<xsd:element name="encoding" type="CT_String" minOccurs="0"/>
|
3035
|
+
<xsd:element name="optimizeForBrowser" type="CT_OptimizeForBrowser" minOccurs="0"/>
|
3036
|
+
<xsd:element name="relyOnVML" type="CT_OnOff" minOccurs="0"/>
|
3037
|
+
<xsd:element name="allowPNG" type="CT_OnOff" minOccurs="0"/>
|
3038
|
+
<xsd:element name="doNotRelyOnCSS" type="CT_OnOff" minOccurs="0"/>
|
3039
|
+
<xsd:element name="doNotSaveAsSingleFile" type="CT_OnOff" minOccurs="0"/>
|
3040
|
+
<xsd:element name="doNotOrganizeInFolder" type="CT_OnOff" minOccurs="0"/>
|
3041
|
+
<xsd:element name="doNotUseLongFileNames" type="CT_OnOff" minOccurs="0"/>
|
3042
|
+
<xsd:element name="pixelsPerInch" type="CT_DecimalNumber" minOccurs="0"/>
|
3043
|
+
<xsd:element name="targetScreenSz" type="CT_TargetScreenSz" minOccurs="0"/>
|
3044
|
+
<xsd:element name="saveSmartTagsAsXml" type="CT_OnOff" minOccurs="0"/>
|
3045
|
+
</xsd:sequence>
|
3046
|
+
</xsd:complexType>
|
3047
|
+
<xsd:simpleType name="ST_FrameScrollbar">
|
3048
|
+
<xsd:restriction base="xsd:string">
|
3049
|
+
<xsd:enumeration value="on"/>
|
3050
|
+
<xsd:enumeration value="off"/>
|
3051
|
+
<xsd:enumeration value="auto"/>
|
3052
|
+
</xsd:restriction>
|
3053
|
+
</xsd:simpleType>
|
3054
|
+
<xsd:complexType name="CT_FrameScrollbar">
|
3055
|
+
<xsd:attribute name="val" type="ST_FrameScrollbar" use="required"/>
|
3056
|
+
</xsd:complexType>
|
3057
|
+
<xsd:complexType name="CT_OptimizeForBrowser">
|
3058
|
+
<xsd:complexContent>
|
3059
|
+
<xsd:extension base="CT_OnOff">
|
3060
|
+
<xsd:attribute name="target" type="s:ST_String" use="optional"/>
|
3061
|
+
</xsd:extension>
|
3062
|
+
</xsd:complexContent>
|
3063
|
+
</xsd:complexType>
|
3064
|
+
<xsd:complexType name="CT_Frame">
|
3065
|
+
<xsd:sequence>
|
3066
|
+
<xsd:element name="sz" type="CT_String" minOccurs="0"/>
|
3067
|
+
<xsd:element name="name" type="CT_String" minOccurs="0"/>
|
3068
|
+
<xsd:element name="title" type="CT_String" minOccurs="0"/>
|
3069
|
+
<xsd:element name="longDesc" type="CT_Rel" minOccurs="0"/>
|
3070
|
+
<xsd:element name="sourceFileName" type="CT_Rel" minOccurs="0"/>
|
3071
|
+
<xsd:element name="marW" type="CT_PixelsMeasure" minOccurs="0"/>
|
3072
|
+
<xsd:element name="marH" type="CT_PixelsMeasure" minOccurs="0"/>
|
3073
|
+
<xsd:element name="scrollbar" type="CT_FrameScrollbar" minOccurs="0"/>
|
3074
|
+
<xsd:element name="noResizeAllowed" type="CT_OnOff" minOccurs="0"/>
|
3075
|
+
<xsd:element name="linkedToFile" type="CT_OnOff" minOccurs="0"/>
|
3076
|
+
</xsd:sequence>
|
3077
|
+
</xsd:complexType>
|
3078
|
+
<xsd:simpleType name="ST_FrameLayout">
|
3079
|
+
<xsd:restriction base="xsd:string">
|
3080
|
+
<xsd:enumeration value="rows"/>
|
3081
|
+
<xsd:enumeration value="cols"/>
|
3082
|
+
<xsd:enumeration value="none"/>
|
3083
|
+
</xsd:restriction>
|
3084
|
+
</xsd:simpleType>
|
3085
|
+
<xsd:complexType name="CT_FrameLayout">
|
3086
|
+
<xsd:attribute name="val" type="ST_FrameLayout" use="required"/>
|
3087
|
+
</xsd:complexType>
|
3088
|
+
<xsd:complexType name="CT_FramesetSplitbar">
|
3089
|
+
<xsd:sequence>
|
3090
|
+
<xsd:element name="w" type="CT_TwipsMeasure" minOccurs="0"/>
|
3091
|
+
<xsd:element name="color" type="CT_Color" minOccurs="0"/>
|
3092
|
+
<xsd:element name="noBorder" type="CT_OnOff" minOccurs="0"/>
|
3093
|
+
<xsd:element name="flatBorders" type="CT_OnOff" minOccurs="0"/>
|
3094
|
+
</xsd:sequence>
|
3095
|
+
</xsd:complexType>
|
3096
|
+
<xsd:complexType name="CT_Frameset">
|
3097
|
+
<xsd:sequence>
|
3098
|
+
<xsd:element name="sz" type="CT_String" minOccurs="0"/>
|
3099
|
+
<xsd:element name="framesetSplitbar" type="CT_FramesetSplitbar" minOccurs="0"/>
|
3100
|
+
<xsd:element name="frameLayout" type="CT_FrameLayout" minOccurs="0"/>
|
3101
|
+
<xsd:element name="title" type="CT_String" minOccurs="0"/>
|
3102
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
3103
|
+
<xsd:element name="frameset" type="CT_Frameset" minOccurs="0" maxOccurs="unbounded"/>
|
3104
|
+
<xsd:element name="frame" type="CT_Frame" minOccurs="0" maxOccurs="unbounded"/>
|
3105
|
+
</xsd:choice>
|
3106
|
+
</xsd:sequence>
|
3107
|
+
</xsd:complexType>
|
3108
|
+
<xsd:complexType name="CT_NumPicBullet">
|
3109
|
+
<xsd:choice>
|
3110
|
+
<xsd:element name="pict" type="CT_Picture"/>
|
3111
|
+
<xsd:element name="drawing" type="CT_Drawing"/>
|
3112
|
+
</xsd:choice>
|
3113
|
+
<xsd:attribute name="numPicBulletId" type="ST_DecimalNumber" use="required"/>
|
3114
|
+
</xsd:complexType>
|
3115
|
+
<xsd:simpleType name="ST_LevelSuffix">
|
3116
|
+
<xsd:restriction base="xsd:string">
|
3117
|
+
<xsd:enumeration value="tab"/>
|
3118
|
+
<xsd:enumeration value="space"/>
|
3119
|
+
<xsd:enumeration value="nothing"/>
|
3120
|
+
</xsd:restriction>
|
3121
|
+
</xsd:simpleType>
|
3122
|
+
<xsd:complexType name="CT_LevelSuffix">
|
3123
|
+
<xsd:attribute name="val" type="ST_LevelSuffix" use="required"/>
|
3124
|
+
</xsd:complexType>
|
3125
|
+
<xsd:complexType name="CT_LevelText">
|
3126
|
+
<xsd:attribute name="val" type="s:ST_String" use="optional"/>
|
3127
|
+
<xsd:attribute name="null" type="s:ST_OnOff" use="optional"/>
|
3128
|
+
</xsd:complexType>
|
3129
|
+
<xsd:complexType name="CT_LvlLegacy">
|
3130
|
+
<xsd:attribute name="legacy" type="s:ST_OnOff" use="optional"/>
|
3131
|
+
<xsd:attribute name="legacySpace" type="s:ST_TwipsMeasure" use="optional"/>
|
3132
|
+
<xsd:attribute name="legacyIndent" type="ST_SignedTwipsMeasure" use="optional"/>
|
3133
|
+
</xsd:complexType>
|
3134
|
+
<xsd:complexType name="CT_Lvl">
|
3135
|
+
<xsd:sequence>
|
3136
|
+
<xsd:element name="start" type="CT_DecimalNumber" minOccurs="0"/>
|
3137
|
+
<xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0"/>
|
3138
|
+
<xsd:element name="lvlRestart" type="CT_DecimalNumber" minOccurs="0"/>
|
3139
|
+
<xsd:element name="pStyle" type="CT_String" minOccurs="0"/>
|
3140
|
+
<xsd:element name="isLgl" type="CT_OnOff" minOccurs="0"/>
|
3141
|
+
<xsd:element name="suff" type="CT_LevelSuffix" minOccurs="0"/>
|
3142
|
+
<xsd:element name="lvlText" type="CT_LevelText" minOccurs="0"/>
|
3143
|
+
<xsd:element name="lvlPicBulletId" type="CT_DecimalNumber" minOccurs="0"/>
|
3144
|
+
<xsd:element name="legacy" type="CT_LvlLegacy" minOccurs="0"/>
|
3145
|
+
<xsd:element name="lvlJc" type="CT_Jc" minOccurs="0"/>
|
3146
|
+
<xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0"/>
|
3147
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="0"/>
|
3148
|
+
</xsd:sequence>
|
3149
|
+
<xsd:attribute name="ilvl" type="ST_DecimalNumber" use="required"/>
|
3150
|
+
<xsd:attribute name="tplc" type="ST_LongHexNumber" use="optional"/>
|
3151
|
+
<xsd:attribute name="tentative" type="s:ST_OnOff" use="optional"/>
|
3152
|
+
</xsd:complexType>
|
3153
|
+
<xsd:simpleType name="ST_MultiLevelType">
|
3154
|
+
<xsd:restriction base="xsd:string">
|
3155
|
+
<xsd:enumeration value="singleLevel"/>
|
3156
|
+
<xsd:enumeration value="multilevel"/>
|
3157
|
+
<xsd:enumeration value="hybridMultilevel"/>
|
3158
|
+
</xsd:restriction>
|
3159
|
+
</xsd:simpleType>
|
3160
|
+
<xsd:complexType name="CT_MultiLevelType">
|
3161
|
+
<xsd:attribute name="val" type="ST_MultiLevelType" use="required"/>
|
3162
|
+
</xsd:complexType>
|
3163
|
+
<xsd:complexType name="CT_AbstractNum">
|
3164
|
+
<xsd:sequence>
|
3165
|
+
<xsd:element name="nsid" type="CT_LongHexNumber" minOccurs="0"/>
|
3166
|
+
<xsd:element name="multiLevelType" type="CT_MultiLevelType" minOccurs="0"/>
|
3167
|
+
<xsd:element name="tmpl" type="CT_LongHexNumber" minOccurs="0"/>
|
3168
|
+
<xsd:element name="name" type="CT_String" minOccurs="0"/>
|
3169
|
+
<xsd:element name="styleLink" type="CT_String" minOccurs="0"/>
|
3170
|
+
<xsd:element name="numStyleLink" type="CT_String" minOccurs="0"/>
|
3171
|
+
<xsd:element name="lvl" type="CT_Lvl" minOccurs="0" maxOccurs="9"/>
|
3172
|
+
</xsd:sequence>
|
3173
|
+
<xsd:attribute name="abstractNumId" type="ST_DecimalNumber" use="required"/>
|
3174
|
+
</xsd:complexType>
|
3175
|
+
<xsd:complexType name="CT_NumLvl">
|
3176
|
+
<xsd:sequence>
|
3177
|
+
<xsd:element name="startOverride" type="CT_DecimalNumber" minOccurs="0"/>
|
3178
|
+
<xsd:element name="lvl" type="CT_Lvl" minOccurs="0" maxOccurs="1"/>
|
3179
|
+
</xsd:sequence>
|
3180
|
+
<xsd:attribute name="ilvl" type="ST_DecimalNumber" use="required"/>
|
3181
|
+
</xsd:complexType>
|
3182
|
+
<xsd:complexType name="CT_Num">
|
3183
|
+
<xsd:sequence>
|
3184
|
+
<xsd:element name="abstractNumId" type="CT_DecimalNumber" minOccurs="1"/>
|
3185
|
+
<xsd:element name="lvlOverride" type="CT_NumLvl" minOccurs="0" maxOccurs="9"/>
|
3186
|
+
</xsd:sequence>
|
3187
|
+
<xsd:attribute name="numId" type="ST_DecimalNumber" use="required"/>
|
3188
|
+
</xsd:complexType>
|
3189
|
+
<xsd:complexType name="CT_Numbering">
|
3190
|
+
<xsd:sequence>
|
3191
|
+
<xsd:element name="numPicBullet" type="CT_NumPicBullet" minOccurs="0" maxOccurs="unbounded"/>
|
3192
|
+
<xsd:element name="abstractNum" type="CT_AbstractNum" minOccurs="0" maxOccurs="unbounded"/>
|
3193
|
+
<xsd:element name="num" type="CT_Num" minOccurs="0" maxOccurs="unbounded"/>
|
3194
|
+
<xsd:element name="numIdMacAtCleanup" type="CT_DecimalNumber" minOccurs="0"/>
|
3195
|
+
</xsd:sequence>
|
3196
|
+
</xsd:complexType>
|
3197
|
+
<xsd:simpleType name="ST_TblStyleOverrideType">
|
3198
|
+
<xsd:restriction base="xsd:string">
|
3199
|
+
<xsd:enumeration value="wholeTable"/>
|
3200
|
+
<xsd:enumeration value="firstRow"/>
|
3201
|
+
<xsd:enumeration value="lastRow"/>
|
3202
|
+
<xsd:enumeration value="firstCol"/>
|
3203
|
+
<xsd:enumeration value="lastCol"/>
|
3204
|
+
<xsd:enumeration value="band1Vert"/>
|
3205
|
+
<xsd:enumeration value="band2Vert"/>
|
3206
|
+
<xsd:enumeration value="band1Horz"/>
|
3207
|
+
<xsd:enumeration value="band2Horz"/>
|
3208
|
+
<xsd:enumeration value="neCell"/>
|
3209
|
+
<xsd:enumeration value="nwCell"/>
|
3210
|
+
<xsd:enumeration value="seCell"/>
|
3211
|
+
<xsd:enumeration value="swCell"/>
|
3212
|
+
</xsd:restriction>
|
3213
|
+
</xsd:simpleType>
|
3214
|
+
<xsd:complexType name="CT_TblStylePr">
|
3215
|
+
<xsd:sequence>
|
3216
|
+
<xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0"/>
|
3217
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="0"/>
|
3218
|
+
<xsd:element name="tblPr" type="CT_TblPrBase" minOccurs="0"/>
|
3219
|
+
<xsd:element name="trPr" type="CT_TrPr" minOccurs="0" maxOccurs="1"/>
|
3220
|
+
<xsd:element name="tcPr" type="CT_TcPr" minOccurs="0" maxOccurs="1"/>
|
3221
|
+
</xsd:sequence>
|
3222
|
+
<xsd:attribute name="type" type="ST_TblStyleOverrideType" use="required"/>
|
3223
|
+
</xsd:complexType>
|
3224
|
+
<xsd:simpleType name="ST_StyleType">
|
3225
|
+
<xsd:restriction base="xsd:string">
|
3226
|
+
<xsd:enumeration value="paragraph"/>
|
3227
|
+
<xsd:enumeration value="character"/>
|
3228
|
+
<xsd:enumeration value="table"/>
|
3229
|
+
<xsd:enumeration value="numbering"/>
|
3230
|
+
</xsd:restriction>
|
3231
|
+
</xsd:simpleType>
|
3232
|
+
<xsd:complexType name="CT_Style">
|
3233
|
+
<xsd:sequence>
|
3234
|
+
<xsd:element name="name" type="CT_String" minOccurs="0" maxOccurs="1"/>
|
3235
|
+
<xsd:element name="aliases" type="CT_String" minOccurs="0"/>
|
3236
|
+
<xsd:element name="basedOn" type="CT_String" minOccurs="0"/>
|
3237
|
+
<xsd:element name="next" type="CT_String" minOccurs="0"/>
|
3238
|
+
<xsd:element name="link" type="CT_String" minOccurs="0"/>
|
3239
|
+
<xsd:element name="autoRedefine" type="CT_OnOff" minOccurs="0"/>
|
3240
|
+
<xsd:element name="hidden" type="CT_OnOff" minOccurs="0"/>
|
3241
|
+
<xsd:element name="uiPriority" type="CT_DecimalNumber" minOccurs="0"/>
|
3242
|
+
<xsd:element name="semiHidden" type="CT_OnOff" minOccurs="0"/>
|
3243
|
+
<xsd:element name="unhideWhenUsed" type="CT_OnOff" minOccurs="0"/>
|
3244
|
+
<xsd:element name="qFormat" type="CT_OnOff" minOccurs="0"/>
|
3245
|
+
<xsd:element name="locked" type="CT_OnOff" minOccurs="0"/>
|
3246
|
+
<xsd:element name="personal" type="CT_OnOff" minOccurs="0"/>
|
3247
|
+
<xsd:element name="personalCompose" type="CT_OnOff" minOccurs="0"/>
|
3248
|
+
<xsd:element name="personalReply" type="CT_OnOff" minOccurs="0"/>
|
3249
|
+
<xsd:element name="rsid" type="CT_LongHexNumber" minOccurs="0"/>
|
3250
|
+
<xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0" maxOccurs="1"/>
|
3251
|
+
<xsd:element name="rPr" type="CT_RPr" minOccurs="0" maxOccurs="1"/>
|
3252
|
+
<xsd:element name="tblPr" type="CT_TblPrBase" minOccurs="0" maxOccurs="1"/>
|
3253
|
+
<xsd:element name="trPr" type="CT_TrPr" minOccurs="0" maxOccurs="1"/>
|
3254
|
+
<xsd:element name="tcPr" type="CT_TcPr" minOccurs="0" maxOccurs="1"/>
|
3255
|
+
<xsd:element name="tblStylePr" type="CT_TblStylePr" minOccurs="0" maxOccurs="unbounded"/>
|
3256
|
+
</xsd:sequence>
|
3257
|
+
<xsd:attribute name="type" type="ST_StyleType" use="optional"/>
|
3258
|
+
<xsd:attribute name="styleId" type="s:ST_String" use="optional"/>
|
3259
|
+
<xsd:attribute name="default" type="s:ST_OnOff" use="optional"/>
|
3260
|
+
<xsd:attribute name="customStyle" type="s:ST_OnOff" use="optional"/>
|
3261
|
+
</xsd:complexType>
|
3262
|
+
<xsd:complexType name="CT_LsdException">
|
3263
|
+
<xsd:attribute name="name" type="s:ST_String" use="required"/>
|
3264
|
+
<xsd:attribute name="locked" type="s:ST_OnOff"/>
|
3265
|
+
<xsd:attribute name="uiPriority" type="ST_DecimalNumber"/>
|
3266
|
+
<xsd:attribute name="semiHidden" type="s:ST_OnOff"/>
|
3267
|
+
<xsd:attribute name="unhideWhenUsed" type="s:ST_OnOff"/>
|
3268
|
+
<xsd:attribute name="qFormat" type="s:ST_OnOff"/>
|
3269
|
+
</xsd:complexType>
|
3270
|
+
<xsd:complexType name="CT_LatentStyles">
|
3271
|
+
<xsd:sequence>
|
3272
|
+
<xsd:element name="lsdException" type="CT_LsdException" minOccurs="0" maxOccurs="unbounded"/>
|
3273
|
+
</xsd:sequence>
|
3274
|
+
<xsd:attribute name="defLockedState" type="s:ST_OnOff"/>
|
3275
|
+
<xsd:attribute name="defUIPriority" type="ST_DecimalNumber"/>
|
3276
|
+
<xsd:attribute name="defSemiHidden" type="s:ST_OnOff"/>
|
3277
|
+
<xsd:attribute name="defUnhideWhenUsed" type="s:ST_OnOff"/>
|
3278
|
+
<xsd:attribute name="defQFormat" type="s:ST_OnOff"/>
|
3279
|
+
<xsd:attribute name="count" type="ST_DecimalNumber"/>
|
3280
|
+
</xsd:complexType>
|
3281
|
+
<xsd:complexType name="CT_Styles">
|
3282
|
+
<xsd:sequence>
|
3283
|
+
<xsd:element name="docDefaults" type="CT_DocDefaults" minOccurs="0"/>
|
3284
|
+
<xsd:element name="latentStyles" type="CT_LatentStyles" minOccurs="0" maxOccurs="1"/>
|
3285
|
+
<xsd:element name="style" type="CT_Style" minOccurs="0" maxOccurs="unbounded"/>
|
3286
|
+
</xsd:sequence>
|
3287
|
+
</xsd:complexType>
|
3288
|
+
<xsd:complexType name="CT_Panose">
|
3289
|
+
<xsd:attribute name="val" type="s:ST_Panose" use="required"/>
|
3290
|
+
</xsd:complexType>
|
3291
|
+
<xsd:simpleType name="ST_FontFamily">
|
3292
|
+
<xsd:restriction base="xsd:string">
|
3293
|
+
<xsd:enumeration value="decorative"/>
|
3294
|
+
<xsd:enumeration value="modern"/>
|
3295
|
+
<xsd:enumeration value="roman"/>
|
3296
|
+
<xsd:enumeration value="script"/>
|
3297
|
+
<xsd:enumeration value="swiss"/>
|
3298
|
+
<xsd:enumeration value="auto"/>
|
3299
|
+
</xsd:restriction>
|
3300
|
+
</xsd:simpleType>
|
3301
|
+
<xsd:complexType name="CT_FontFamily">
|
3302
|
+
<xsd:attribute name="val" type="ST_FontFamily" use="required"/>
|
3303
|
+
</xsd:complexType>
|
3304
|
+
<xsd:simpleType name="ST_Pitch">
|
3305
|
+
<xsd:restriction base="xsd:string">
|
3306
|
+
<xsd:enumeration value="fixed"/>
|
3307
|
+
<xsd:enumeration value="variable"/>
|
3308
|
+
<xsd:enumeration value="default"/>
|
3309
|
+
</xsd:restriction>
|
3310
|
+
</xsd:simpleType>
|
3311
|
+
<xsd:complexType name="CT_Pitch">
|
3312
|
+
<xsd:attribute name="val" type="ST_Pitch" use="required"/>
|
3313
|
+
</xsd:complexType>
|
3314
|
+
<xsd:complexType name="CT_FontSig">
|
3315
|
+
<xsd:attribute name="usb0" use="required" type="ST_LongHexNumber"/>
|
3316
|
+
<xsd:attribute name="usb1" use="required" type="ST_LongHexNumber"/>
|
3317
|
+
<xsd:attribute name="usb2" use="required" type="ST_LongHexNumber"/>
|
3318
|
+
<xsd:attribute name="usb3" use="required" type="ST_LongHexNumber"/>
|
3319
|
+
<xsd:attribute name="csb0" use="required" type="ST_LongHexNumber"/>
|
3320
|
+
<xsd:attribute name="csb1" use="required" type="ST_LongHexNumber"/>
|
3321
|
+
</xsd:complexType>
|
3322
|
+
<xsd:complexType name="CT_FontRel">
|
3323
|
+
<xsd:complexContent>
|
3324
|
+
<xsd:extension base="CT_Rel">
|
3325
|
+
<xsd:attribute name="fontKey" type="s:ST_Guid"/>
|
3326
|
+
<xsd:attribute name="subsetted" type="s:ST_OnOff"/>
|
3327
|
+
</xsd:extension>
|
3328
|
+
</xsd:complexContent>
|
3329
|
+
</xsd:complexType>
|
3330
|
+
<xsd:complexType name="CT_Font">
|
3331
|
+
<xsd:sequence>
|
3332
|
+
<xsd:element name="altName" type="CT_String" minOccurs="0" maxOccurs="1"/>
|
3333
|
+
<xsd:element name="panose1" type="CT_Panose" minOccurs="0" maxOccurs="1"/>
|
3334
|
+
<xsd:element name="charset" type="CT_Charset" minOccurs="0" maxOccurs="1"/>
|
3335
|
+
<xsd:element name="family" type="CT_FontFamily" minOccurs="0" maxOccurs="1"/>
|
3336
|
+
<xsd:element name="notTrueType" type="CT_OnOff" minOccurs="0" maxOccurs="1"/>
|
3337
|
+
<xsd:element name="pitch" type="CT_Pitch" minOccurs="0" maxOccurs="1"/>
|
3338
|
+
<xsd:element name="sig" type="CT_FontSig" minOccurs="0" maxOccurs="1"/>
|
3339
|
+
<xsd:element name="embedRegular" type="CT_FontRel" minOccurs="0" maxOccurs="1"/>
|
3340
|
+
<xsd:element name="embedBold" type="CT_FontRel" minOccurs="0" maxOccurs="1"/>
|
3341
|
+
<xsd:element name="embedItalic" type="CT_FontRel" minOccurs="0" maxOccurs="1"/>
|
3342
|
+
<xsd:element name="embedBoldItalic" type="CT_FontRel" minOccurs="0" maxOccurs="1"/>
|
3343
|
+
</xsd:sequence>
|
3344
|
+
<xsd:attribute name="name" type="s:ST_String" use="required"/>
|
3345
|
+
</xsd:complexType>
|
3346
|
+
<xsd:complexType name="CT_FontsList">
|
3347
|
+
<xsd:sequence>
|
3348
|
+
<xsd:element name="font" type="CT_Font" minOccurs="0" maxOccurs="unbounded"/>
|
3349
|
+
</xsd:sequence>
|
3350
|
+
</xsd:complexType>
|
3351
|
+
<xsd:complexType name="CT_DivBdr">
|
3352
|
+
<xsd:sequence>
|
3353
|
+
<xsd:element name="top" type="CT_Border" minOccurs="0"/>
|
3354
|
+
<xsd:element name="left" type="CT_Border" minOccurs="0"/>
|
3355
|
+
<xsd:element name="bottom" type="CT_Border" minOccurs="0"/>
|
3356
|
+
<xsd:element name="right" type="CT_Border" minOccurs="0"/>
|
3357
|
+
</xsd:sequence>
|
3358
|
+
</xsd:complexType>
|
3359
|
+
<xsd:complexType name="CT_Div">
|
3360
|
+
<xsd:sequence>
|
3361
|
+
<xsd:element name="blockQuote" type="CT_OnOff" minOccurs="0"/>
|
3362
|
+
<xsd:element name="bodyDiv" type="CT_OnOff" minOccurs="0"/>
|
3363
|
+
<xsd:element name="marLeft" type="CT_SignedTwipsMeasure"/>
|
3364
|
+
<xsd:element name="marRight" type="CT_SignedTwipsMeasure"/>
|
3365
|
+
<xsd:element name="marTop" type="CT_SignedTwipsMeasure"/>
|
3366
|
+
<xsd:element name="marBottom" type="CT_SignedTwipsMeasure"/>
|
3367
|
+
<xsd:element name="divBdr" type="CT_DivBdr" minOccurs="0"/>
|
3368
|
+
<xsd:element name="divsChild" type="CT_Divs" minOccurs="0" maxOccurs="unbounded"/>
|
3369
|
+
</xsd:sequence>
|
3370
|
+
<xsd:attribute name="id" type="ST_DecimalNumber" use="required"/>
|
3371
|
+
</xsd:complexType>
|
3372
|
+
<xsd:complexType name="CT_Divs">
|
3373
|
+
<xsd:sequence minOccurs="1" maxOccurs="unbounded">
|
3374
|
+
<xsd:element name="div" type="CT_Div"/>
|
3375
|
+
</xsd:sequence>
|
3376
|
+
</xsd:complexType>
|
3377
|
+
<xsd:complexType name="CT_TxbxContent">
|
3378
|
+
<xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/>
|
3379
|
+
</xsd:complexType>
|
3380
|
+
<xsd:element name="txbxContent" type="CT_TxbxContent"/>
|
3381
|
+
<xsd:group name="EG_MathContent">
|
3382
|
+
<xsd:choice>
|
3383
|
+
<xsd:element ref="m:oMathPara"/>
|
3384
|
+
<xsd:element ref="m:oMath"/>
|
3385
|
+
</xsd:choice>
|
3386
|
+
</xsd:group>
|
3387
|
+
<xsd:group name="EG_BlockLevelChunkElts">
|
3388
|
+
<xsd:choice>
|
3389
|
+
<xsd:group ref="EG_ContentBlockContent" minOccurs="0" maxOccurs="unbounded"/>
|
3390
|
+
</xsd:choice>
|
3391
|
+
</xsd:group>
|
3392
|
+
<xsd:group name="EG_BlockLevelElts">
|
3393
|
+
<xsd:choice>
|
3394
|
+
<xsd:group ref="EG_BlockLevelChunkElts" minOccurs="0" maxOccurs="unbounded"/>
|
3395
|
+
<xsd:element name="altChunk" type="CT_AltChunk" minOccurs="0" maxOccurs="unbounded"/>
|
3396
|
+
</xsd:choice>
|
3397
|
+
</xsd:group>
|
3398
|
+
<xsd:group name="EG_RunLevelElts">
|
3399
|
+
<xsd:choice>
|
3400
|
+
<xsd:element name="proofErr" minOccurs="0" type="CT_ProofErr"/>
|
3401
|
+
<xsd:element name="permStart" minOccurs="0" type="CT_PermStart"/>
|
3402
|
+
<xsd:element name="permEnd" minOccurs="0" type="CT_Perm"/>
|
3403
|
+
<xsd:group ref="EG_RangeMarkupElements" minOccurs="0" maxOccurs="unbounded"/>
|
3404
|
+
<xsd:element name="ins" type="CT_RunTrackChange" minOccurs="0"/>
|
3405
|
+
<xsd:element name="del" type="CT_RunTrackChange" minOccurs="0"/>
|
3406
|
+
<xsd:element name="moveFrom" type="CT_RunTrackChange"/>
|
3407
|
+
<xsd:element name="moveTo" type="CT_RunTrackChange"/>
|
3408
|
+
<xsd:group ref="EG_MathContent" minOccurs="0" maxOccurs="unbounded"/>
|
3409
|
+
</xsd:choice>
|
3410
|
+
</xsd:group>
|
3411
|
+
<xsd:complexType name="CT_Body">
|
3412
|
+
<xsd:sequence>
|
3413
|
+
<xsd:group ref="EG_BlockLevelElts" minOccurs="0" maxOccurs="unbounded"/>
|
3414
|
+
<xsd:element name="sectPr" minOccurs="0" maxOccurs="1" type="CT_SectPr"/>
|
3415
|
+
</xsd:sequence>
|
3416
|
+
</xsd:complexType>
|
3417
|
+
<xsd:complexType name="CT_ShapeDefaults">
|
3418
|
+
<xsd:choice maxOccurs="unbounded">
|
3419
|
+
<xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office"
|
3420
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
3421
|
+
</xsd:choice>
|
3422
|
+
</xsd:complexType>
|
3423
|
+
<xsd:complexType name="CT_Comments">
|
3424
|
+
<xsd:sequence>
|
3425
|
+
<xsd:element name="comment" type="CT_Comment" minOccurs="0" maxOccurs="unbounded"/>
|
3426
|
+
</xsd:sequence>
|
3427
|
+
</xsd:complexType>
|
3428
|
+
<xsd:element name="comments" type="CT_Comments"/>
|
3429
|
+
<xsd:complexType name="CT_Footnotes">
|
3430
|
+
<xsd:sequence maxOccurs="unbounded">
|
3431
|
+
<xsd:element name="footnote" type="CT_FtnEdn" minOccurs="0"/>
|
3432
|
+
</xsd:sequence>
|
3433
|
+
</xsd:complexType>
|
3434
|
+
<xsd:element name="footnotes" type="CT_Footnotes"/>
|
3435
|
+
<xsd:complexType name="CT_Endnotes">
|
3436
|
+
<xsd:sequence maxOccurs="unbounded">
|
3437
|
+
<xsd:element name="endnote" type="CT_FtnEdn" minOccurs="0"/>
|
3438
|
+
</xsd:sequence>
|
3439
|
+
</xsd:complexType>
|
3440
|
+
<xsd:element name="endnotes" type="CT_Endnotes"/>
|
3441
|
+
<xsd:element name="hdr" type="CT_HdrFtr"/>
|
3442
|
+
<xsd:element name="ftr" type="CT_HdrFtr"/>
|
3443
|
+
<xsd:complexType name="CT_SmartTagType">
|
3444
|
+
<xsd:attribute name="namespaceuri" type="s:ST_String"/>
|
3445
|
+
<xsd:attribute name="name" type="s:ST_String"/>
|
3446
|
+
<xsd:attribute name="url" type="s:ST_String"/>
|
3447
|
+
</xsd:complexType>
|
3448
|
+
<xsd:simpleType name="ST_ThemeColor">
|
3449
|
+
<xsd:restriction base="xsd:string">
|
3450
|
+
<xsd:enumeration value="dark1"/>
|
3451
|
+
<xsd:enumeration value="light1"/>
|
3452
|
+
<xsd:enumeration value="dark2"/>
|
3453
|
+
<xsd:enumeration value="light2"/>
|
3454
|
+
<xsd:enumeration value="accent1"/>
|
3455
|
+
<xsd:enumeration value="accent2"/>
|
3456
|
+
<xsd:enumeration value="accent3"/>
|
3457
|
+
<xsd:enumeration value="accent4"/>
|
3458
|
+
<xsd:enumeration value="accent5"/>
|
3459
|
+
<xsd:enumeration value="accent6"/>
|
3460
|
+
<xsd:enumeration value="hyperlink"/>
|
3461
|
+
<xsd:enumeration value="followedHyperlink"/>
|
3462
|
+
<xsd:enumeration value="none"/>
|
3463
|
+
<xsd:enumeration value="background1"/>
|
3464
|
+
<xsd:enumeration value="text1"/>
|
3465
|
+
<xsd:enumeration value="background2"/>
|
3466
|
+
<xsd:enumeration value="text2"/>
|
3467
|
+
</xsd:restriction>
|
3468
|
+
</xsd:simpleType>
|
3469
|
+
<xsd:simpleType name="ST_DocPartBehavior">
|
3470
|
+
<xsd:restriction base="xsd:string">
|
3471
|
+
<xsd:enumeration value="content"/>
|
3472
|
+
<xsd:enumeration value="p"/>
|
3473
|
+
<xsd:enumeration value="pg"/>
|
3474
|
+
</xsd:restriction>
|
3475
|
+
</xsd:simpleType>
|
3476
|
+
<xsd:complexType name="CT_DocPartBehavior">
|
3477
|
+
<xsd:attribute name="val" use="required" type="ST_DocPartBehavior"/>
|
3478
|
+
</xsd:complexType>
|
3479
|
+
<xsd:complexType name="CT_DocPartBehaviors">
|
3480
|
+
<xsd:choice>
|
3481
|
+
<xsd:element name="behavior" type="CT_DocPartBehavior" maxOccurs="unbounded"/>
|
3482
|
+
</xsd:choice>
|
3483
|
+
</xsd:complexType>
|
3484
|
+
<xsd:simpleType name="ST_DocPartType">
|
3485
|
+
<xsd:restriction base="xsd:string">
|
3486
|
+
<xsd:enumeration value="none"/>
|
3487
|
+
<xsd:enumeration value="normal"/>
|
3488
|
+
<xsd:enumeration value="autoExp"/>
|
3489
|
+
<xsd:enumeration value="toolbar"/>
|
3490
|
+
<xsd:enumeration value="speller"/>
|
3491
|
+
<xsd:enumeration value="formFld"/>
|
3492
|
+
<xsd:enumeration value="bbPlcHdr"/>
|
3493
|
+
</xsd:restriction>
|
3494
|
+
</xsd:simpleType>
|
3495
|
+
<xsd:complexType name="CT_DocPartType">
|
3496
|
+
<xsd:attribute name="val" use="required" type="ST_DocPartType"/>
|
3497
|
+
</xsd:complexType>
|
3498
|
+
<xsd:complexType name="CT_DocPartTypes">
|
3499
|
+
<xsd:choice>
|
3500
|
+
<xsd:element name="type" type="CT_DocPartType" maxOccurs="unbounded"/>
|
3501
|
+
</xsd:choice>
|
3502
|
+
<xsd:attribute name="all" type="s:ST_OnOff" use="optional"/>
|
3503
|
+
</xsd:complexType>
|
3504
|
+
<xsd:simpleType name="ST_DocPartGallery">
|
3505
|
+
<xsd:restriction base="xsd:string">
|
3506
|
+
<xsd:enumeration value="placeholder"/>
|
3507
|
+
<xsd:enumeration value="any"/>
|
3508
|
+
<xsd:enumeration value="default"/>
|
3509
|
+
<xsd:enumeration value="docParts"/>
|
3510
|
+
<xsd:enumeration value="coverPg"/>
|
3511
|
+
<xsd:enumeration value="eq"/>
|
3512
|
+
<xsd:enumeration value="ftrs"/>
|
3513
|
+
<xsd:enumeration value="hdrs"/>
|
3514
|
+
<xsd:enumeration value="pgNum"/>
|
3515
|
+
<xsd:enumeration value="tbls"/>
|
3516
|
+
<xsd:enumeration value="watermarks"/>
|
3517
|
+
<xsd:enumeration value="autoTxt"/>
|
3518
|
+
<xsd:enumeration value="txtBox"/>
|
3519
|
+
<xsd:enumeration value="pgNumT"/>
|
3520
|
+
<xsd:enumeration value="pgNumB"/>
|
3521
|
+
<xsd:enumeration value="pgNumMargins"/>
|
3522
|
+
<xsd:enumeration value="tblOfContents"/>
|
3523
|
+
<xsd:enumeration value="bib"/>
|
3524
|
+
<xsd:enumeration value="custQuickParts"/>
|
3525
|
+
<xsd:enumeration value="custCoverPg"/>
|
3526
|
+
<xsd:enumeration value="custEq"/>
|
3527
|
+
<xsd:enumeration value="custFtrs"/>
|
3528
|
+
<xsd:enumeration value="custHdrs"/>
|
3529
|
+
<xsd:enumeration value="custPgNum"/>
|
3530
|
+
<xsd:enumeration value="custTbls"/>
|
3531
|
+
<xsd:enumeration value="custWatermarks"/>
|
3532
|
+
<xsd:enumeration value="custAutoTxt"/>
|
3533
|
+
<xsd:enumeration value="custTxtBox"/>
|
3534
|
+
<xsd:enumeration value="custPgNumT"/>
|
3535
|
+
<xsd:enumeration value="custPgNumB"/>
|
3536
|
+
<xsd:enumeration value="custPgNumMargins"/>
|
3537
|
+
<xsd:enumeration value="custTblOfContents"/>
|
3538
|
+
<xsd:enumeration value="custBib"/>
|
3539
|
+
<xsd:enumeration value="custom1"/>
|
3540
|
+
<xsd:enumeration value="custom2"/>
|
3541
|
+
<xsd:enumeration value="custom3"/>
|
3542
|
+
<xsd:enumeration value="custom4"/>
|
3543
|
+
<xsd:enumeration value="custom5"/>
|
3544
|
+
</xsd:restriction>
|
3545
|
+
</xsd:simpleType>
|
3546
|
+
<xsd:complexType name="CT_DocPartGallery">
|
3547
|
+
<xsd:attribute name="val" type="ST_DocPartGallery" use="required"/>
|
3548
|
+
</xsd:complexType>
|
3549
|
+
<xsd:complexType name="CT_DocPartCategory">
|
3550
|
+
<xsd:sequence>
|
3551
|
+
<xsd:element name="name" type="CT_String" minOccurs="1" maxOccurs="1"/>
|
3552
|
+
<xsd:element name="gallery" type="CT_DocPartGallery" minOccurs="1" maxOccurs="1"/>
|
3553
|
+
</xsd:sequence>
|
3554
|
+
</xsd:complexType>
|
3555
|
+
<xsd:complexType name="CT_DocPartName">
|
3556
|
+
<xsd:attribute name="val" type="s:ST_String" use="required"/>
|
3557
|
+
<xsd:attribute name="decorated" type="s:ST_OnOff" use="optional"/>
|
3558
|
+
</xsd:complexType>
|
3559
|
+
<xsd:complexType name="CT_DocPartPr">
|
3560
|
+
<xsd:choice maxOccurs="unbounded">
|
3561
|
+
<xsd:element name="name" type="CT_DocPartName" minOccurs="1"/>
|
3562
|
+
<xsd:element name="style" type="CT_String"/>
|
3563
|
+
<xsd:element name="category" type="CT_DocPartCategory"/>
|
3564
|
+
<xsd:element name="types" type="CT_DocPartTypes"/>
|
3565
|
+
<xsd:element name="behaviors" type="CT_DocPartBehaviors"/>
|
3566
|
+
<xsd:element name="description" type="CT_String"/>
|
3567
|
+
<xsd:element name="guid" type="CT_Guid"/>
|
3568
|
+
</xsd:choice>
|
3569
|
+
</xsd:complexType>
|
3570
|
+
<xsd:complexType name="CT_DocPart">
|
3571
|
+
<xsd:sequence>
|
3572
|
+
<xsd:element name="docPartPr" type="CT_DocPartPr" minOccurs="0"/>
|
3573
|
+
<xsd:element name="docPartBody" type="CT_Body" minOccurs="0"/>
|
3574
|
+
</xsd:sequence>
|
3575
|
+
</xsd:complexType>
|
3576
|
+
<xsd:complexType name="CT_DocParts">
|
3577
|
+
<xsd:choice>
|
3578
|
+
<xsd:element name="docPart" type="CT_DocPart" minOccurs="1" maxOccurs="unbounded"/>
|
3579
|
+
</xsd:choice>
|
3580
|
+
</xsd:complexType>
|
3581
|
+
<xsd:element name="settings" type="CT_Settings"/>
|
3582
|
+
<xsd:element name="webSettings" type="CT_WebSettings"/>
|
3583
|
+
<xsd:element name="fonts" type="CT_FontsList"/>
|
3584
|
+
<xsd:element name="numbering" type="CT_Numbering"/>
|
3585
|
+
<xsd:element name="styles" type="CT_Styles"/>
|
3586
|
+
<xsd:simpleType name="ST_CaptionPos">
|
3587
|
+
<xsd:restriction base="xsd:string">
|
3588
|
+
<xsd:enumeration value="above"/>
|
3589
|
+
<xsd:enumeration value="below"/>
|
3590
|
+
<xsd:enumeration value="left"/>
|
3591
|
+
<xsd:enumeration value="right"/>
|
3592
|
+
</xsd:restriction>
|
3593
|
+
</xsd:simpleType>
|
3594
|
+
<xsd:complexType name="CT_Caption">
|
3595
|
+
<xsd:attribute name="name" type="s:ST_String" use="required"/>
|
3596
|
+
<xsd:attribute name="pos" type="ST_CaptionPos" use="optional"/>
|
3597
|
+
<xsd:attribute name="chapNum" type="s:ST_OnOff" use="optional"/>
|
3598
|
+
<xsd:attribute name="heading" type="ST_DecimalNumber" use="optional"/>
|
3599
|
+
<xsd:attribute name="noLabel" type="s:ST_OnOff" use="optional"/>
|
3600
|
+
<xsd:attribute name="numFmt" type="ST_NumberFormat" use="optional"/>
|
3601
|
+
<xsd:attribute name="sep" type="ST_ChapterSep" use="optional"/>
|
3602
|
+
</xsd:complexType>
|
3603
|
+
<xsd:complexType name="CT_AutoCaption">
|
3604
|
+
<xsd:attribute name="name" type="s:ST_String" use="required"/>
|
3605
|
+
<xsd:attribute name="caption" type="s:ST_String" use="required"/>
|
3606
|
+
</xsd:complexType>
|
3607
|
+
<xsd:complexType name="CT_AutoCaptions">
|
3608
|
+
<xsd:sequence>
|
3609
|
+
<xsd:element name="autoCaption" type="CT_AutoCaption" minOccurs="1" maxOccurs="unbounded"/>
|
3610
|
+
</xsd:sequence>
|
3611
|
+
</xsd:complexType>
|
3612
|
+
<xsd:complexType name="CT_Captions">
|
3613
|
+
<xsd:sequence>
|
3614
|
+
<xsd:element name="caption" type="CT_Caption" minOccurs="1" maxOccurs="unbounded"/>
|
3615
|
+
<xsd:element name="autoCaptions" type="CT_AutoCaptions" minOccurs="0" maxOccurs="1"/>
|
3616
|
+
</xsd:sequence>
|
3617
|
+
</xsd:complexType>
|
3618
|
+
<xsd:complexType name="CT_DocumentBase">
|
3619
|
+
<xsd:sequence>
|
3620
|
+
<xsd:element name="background" type="CT_Background" minOccurs="0"/>
|
3621
|
+
</xsd:sequence>
|
3622
|
+
</xsd:complexType>
|
3623
|
+
<xsd:complexType name="CT_Document">
|
3624
|
+
<xsd:complexContent>
|
3625
|
+
<xsd:extension base="CT_DocumentBase">
|
3626
|
+
<xsd:sequence>
|
3627
|
+
<xsd:element name="body" type="CT_Body" minOccurs="0" maxOccurs="1"/>
|
3628
|
+
</xsd:sequence>
|
3629
|
+
<xsd:attribute name="conformance" type="s:ST_ConformanceClass"/>
|
3630
|
+
</xsd:extension>
|
3631
|
+
</xsd:complexContent>
|
3632
|
+
</xsd:complexType>
|
3633
|
+
<xsd:complexType name="CT_GlossaryDocument">
|
3634
|
+
<xsd:complexContent>
|
3635
|
+
<xsd:extension base="CT_DocumentBase">
|
3636
|
+
<xsd:sequence>
|
3637
|
+
<xsd:element name="docParts" type="CT_DocParts" minOccurs="0"/>
|
3638
|
+
</xsd:sequence>
|
3639
|
+
</xsd:extension>
|
3640
|
+
</xsd:complexContent>
|
3641
|
+
</xsd:complexType>
|
3642
|
+
<xsd:element name="document" type="CT_Document"/>
|
3643
|
+
<xsd:element name="glossaryDocument" type="CT_GlossaryDocument"/>
|
3644
|
+
</xsd:schema>
|