1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
mod a_graphic;
mod a_graphic_data;
mod abstract_numbering;
mod based_on;
mod bold;
mod bold_cs;
mod bookmark_end;
mod bookmark_start;
mod br;
mod character_spacing;
mod color;
mod comment;
mod comment_extended;
mod comment_range_end;
mod comment_range_start;
mod data_binding;
mod default_tab_stop;
mod delete;
mod delete_instr_text;
mod delete_text;
mod div;
mod doc_defaults;
mod doc_grid;
mod doc_id;
mod doc_var;
mod drawing;
mod fld_char;
mod font;
mod font_scheme;
mod footer_reference;
mod grid_span;
mod header_reference;
mod highlight;
mod hyperlink;
mod indent;
mod indent_level;
mod insert;
mod instr_hyperlink;
mod instr_pageref;
mod instr_tc;
mod instr_text;
mod instr_toc;
mod is_lgl;
mod italic;
mod italic_cs;
mod justification;
mod level;
mod level_jc;
mod level_override;
mod level_restart;
mod level_text;
mod line_spacing;
mod link;
mod mc_fallback;
mod name;
mod next;
mod number_format;
mod numbering;
mod numbering_id;
mod numbering_property;
mod outline_lvl;
mod page_margin;
mod page_size;
mod paragraph;
mod paragraph_property;
mod paragraph_property_change;
mod paragraph_style;
mod pic;
mod q_format;
mod run;
mod run_fonts;
mod run_property;
mod run_property_default;
mod run_style;
mod section;
mod section_property;
mod shading;
mod shape;
mod spec_vanish;
mod start;
mod strike;
mod structured_data_tag;
mod structured_data_tag_property;
mod style;
mod sym;
mod sz;
mod sz_cs;
mod tab;
mod table;
mod table_borders;
mod table_cell;
mod table_cell_borders;
mod table_cell_margins;
mod table_cell_property;
mod table_cell_width;
mod table_grid;
mod table_indent;
mod table_layout;
mod table_of_contents;
mod table_of_contents_item;
mod table_property;
mod table_row;
mod table_row_property;
mod table_style;
mod table_width;
mod text;
mod text_border;
mod text_box;
mod text_box_content;
mod text_direction;
mod underline;
mod v_align;
mod vanish;
mod vert_align;
mod vertical_merge;
mod wp_anchor;
mod wps_shape;
mod wps_text_box;
mod zoom;

pub use a_graphic::*;
pub use a_graphic_data::*;
pub use abstract_numbering::*;
pub use based_on::*;
pub use bold::*;
pub use bold_cs::*;
pub use bookmark_end::*;
pub use bookmark_start::*;
pub use br::*;
pub use character_spacing::*;
pub use color::*;
pub use comment::*;
pub use comment_extended::*;
pub use comment_range_end::*;
pub use comment_range_start::*;
pub use data_binding::*;
pub use default_tab_stop::*;
pub use delete::*;
pub use delete_instr_text::*;
pub use delete_text::*;
pub use div::*;
pub use doc_defaults::*;
pub use doc_grid::*;
pub use doc_id::*;
pub use doc_var::*;
pub use drawing::*;
pub use fld_char::*;
pub use font::*;
pub use font_scheme::*;
pub use footer_reference::*;
pub use grid_span::*;
pub use header_reference::*;
pub use highlight::*;
pub use hyperlink::*;
pub use indent::*;
pub use indent_level::*;
pub use insert::*;
pub use instr_hyperlink::*;
pub use instr_pageref::*;
pub use instr_tc::*;
pub use instr_text::*;
pub use instr_toc::*;
pub use is_lgl::*;
pub use italic::*;
pub use italic_cs::*;
pub use justification::*;
pub use level::*;
pub use level_jc::*;
pub use level_override::*;
pub use level_restart::*;
pub use level_text::*;
pub use line_spacing::*;
pub use link::*;
pub use mc_fallback::*;
pub use name::*;
pub use next::*;
pub use number_format::*;
pub use numbering::*;
pub use numbering_id::*;
pub use numbering_property::*;
pub use outline_lvl::*;
pub use page_margin::*;
pub use page_size::*;
pub use paragraph::*;
pub use paragraph_property::*;
pub use paragraph_property_change::*;
pub use paragraph_style::*;
pub use pic::*;
pub use q_format::*;
pub use run::*;
pub use run_fonts::*;
pub use run_property::*;
pub use run_property_default::*;
pub use run_style::*;
pub use section::*;
pub use section_property::*;
pub use shading::*;
pub use shape::*;
pub use spec_vanish::*;
pub use start::*;
pub use strike::*;
pub use structured_data_tag::*;
pub use structured_data_tag_property::*;
pub use style::*;
pub use sym::*;
pub use sz::*;
pub use sz_cs::*;
pub use tab::*;
pub use table::*;
pub use table_borders::*;
pub use table_cell::*;
pub use table_cell_borders::*;
pub use table_cell_margins::*;
pub use table_cell_property::*;
pub use table_cell_width::*;
pub use table_grid::*;
pub use table_indent::*;
pub use table_layout::*;
pub use table_of_contents::*;
pub use table_of_contents_item::*;
pub use table_property::*;
pub use table_row::*;
pub use table_row_property::*;
pub use table_style::*;
pub use table_width::*;
pub use text::*;
pub use text_border::*;
pub use text_box::*;
pub use text_box_content::*;
pub use text_direction::*;
pub use underline::*;
pub use v_align::*;
pub use vanish::*;
pub use vert_align::*;
pub use vertical_merge::*;
pub use wp_anchor::*;
pub use wps_shape::*;
pub use wps_text_box::*;
pub use zoom::*;