idml 0.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.
Files changed (917) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rake.yml +18 -0
  3. data/.github/workflows/release.yml +27 -0
  4. data/.gitignore +27 -0
  5. data/.rspec +3 -0
  6. data/.rubocop.yml +21 -0
  7. data/.rubocop_todo.yml +113 -0
  8. data/.yardopts +4 -0
  9. data/CLAUDE.md +305 -0
  10. data/Gemfile +17 -0
  11. data/Gemfile.lock +253 -0
  12. data/README.adoc +4 -0
  13. data/Rakefile +22 -0
  14. data/TODO.complete/01-bootstrap.md +52 -0
  15. data/TODO.complete/02-package-layer.md +48 -0
  16. data/TODO.complete/03-parts-registry-and-designmap.md +64 -0
  17. data/TODO.complete/04-spread-and-master-spread.md +57 -0
  18. data/TODO.complete/05-story-and-backing-story.md +56 -0
  19. data/TODO.complete/06-resources.md +53 -0
  20. data/TODO.complete/07-xml-structure.md +32 -0
  21. data/TODO.complete/08-round-trip-suite.md +44 -0
  22. data/TODO.complete/09-validation.md +51 -0
  23. data/TODO.complete/10-composition.md +62 -0
  24. data/TODO.complete/11-package-accessors.md +41 -0
  25. data/TODO.complete/12-document-layer.md +44 -0
  26. data/TODO.complete/13-insert-idml.md +31 -0
  27. data/TODO.complete/14-geometry.md +33 -0
  28. data/TODO.complete/15-cli.md +44 -0
  29. data/TODO.complete/16-cross-version-tolerance.md +40 -0
  30. data/TODO.complete/17-yard-documentation.md +38 -0
  31. data/TODO.complete/18-remove-nokogiri.md +38 -0
  32. data/TODO.complete/19-vendor-fixtures.md +44 -0
  33. data/TODO.complete/20-round-trip-all-fixtures.md +39 -0
  34. data/TODO.complete/21-anti-pattern-forbid-nokogiri.md +31 -0
  35. data/TODO.complete/22-claude-md-no-nokogiri.md +29 -0
  36. data/TODO.complete/23-lutaml-only-no-rexml.md +60 -0
  37. data/TODO.complete/24-anti-pattern-forbid-rexml.md +29 -0
  38. data/TODO.complete/25-claude-md-lutaml-only.md +29 -0
  39. data/TODO.complete/26-rnc-faithful-models.md +66 -0
  40. data/TODO.complete/27-geometry-scale-rotate.md +28 -0
  41. data/TODO.complete/28-designmap-migration.md +33 -0
  42. data/TODO.complete/29-add-page-from-idml.md +35 -0
  43. data/TODO.complete/30-import-xml.md +37 -0
  44. data/TODO.complete/31-export-xml.md +32 -0
  45. data/TODO.complete/33-element-spec-coverage.md +30 -0
  46. data/TODO.pdf/01-font-metrics.md +43 -0
  47. data/TODO.pdf/02-font-resolver.md +42 -0
  48. data/TODO.pdf/03-text-shaper.md +40 -0
  49. data/TODO.pdf/04-line-breaker-justifier.md +51 -0
  50. data/TODO.pdf/05-vertical-layout.md +42 -0
  51. data/TODO.pdf/06-pdf-color-operators.md +25 -0
  52. data/TODO.pdf/07-pdf-path-operators.md +29 -0
  53. data/TODO.pdf/08-pdf-text-operators.md +29 -0
  54. data/TODO.pdf/09-image-embedding.md +34 -0
  55. data/TODO.pdf/10-spread-renderer.md +33 -0
  56. data/TODO.pdf/11-font-embedding.md +38 -0
  57. data/TODO.pdf/12-idml-to-pdf-pipeline.md +41 -0
  58. data/TODO.pdf/13-cjk-text-layout.md +40 -0
  59. data/TODO.pdf/14-page-item-element-models.md +61 -0
  60. data/TODO.pdf/15-wire-spread-children.md +46 -0
  61. data/TODO.pdf/16-typed-model-pipeline.md +48 -0
  62. data/TODO.pdf/17-shape-rendering.md +46 -0
  63. data/TODO.pdf/18-text-rendering.md +48 -0
  64. data/TODO.pdf/19-page-dimensions.md +40 -0
  65. data/TODO.pdf/20-png-image-support.md +43 -0
  66. data/TODO.pdf/21-coordinate-transform.md +41 -0
  67. data/TODO.pdf/22-color-resolution.md +41 -0
  68. data/TODO.pdf/23-fontmetrics-ps-name-fix.md +43 -0
  69. data/TODO.pdf/24-antipattern-coverage.md +35 -0
  70. data/TODO.pdf/25-cli-render.md +38 -0
  71. data/TODO.pdf/26-renderer-registry.md +45 -0
  72. data/TODO.pdf/27-text-engine-integration.md +41 -0
  73. data/TODO.pdf/28-path-geometry-models.md +47 -0
  74. data/TODO.pdf/29-character-style-extraction.md +36 -0
  75. data/TODO.pdf/30-shape-geometry-rendering.md +40 -0
  76. data/TODO.pdf/31-stroke-rendering.md +35 -0
  77. data/TODO.pdf/32-master-spread-rendering.md +36 -0
  78. data/TODO.pdf/33-font-resolution-from-idml.md +38 -0
  79. data/TODO.pdf/34-story-threading.md +32 -0
  80. data/TODO.pdf/35-pdf-metadata.md +34 -0
  81. data/TODO.pdf/36-performance-caching.md +33 -0
  82. data/TODO.pdf/37-round-trip-specs.md +33 -0
  83. data/TODO.pdf/38-pdf-output-validation.md +34 -0
  84. data/TODO.pdf/39-geometry-coordinate-helpers.md +26 -0
  85. data/TODO.pdf/40-font-ps-name-resolution.md +30 -0
  86. data/TODO.pdf/41-graphic-line-rendering.md +20 -0
  87. data/TODO.pdf/42-group-transform-application.md +17 -0
  88. data/TODO.pdf/43-text-frame-insets.md +17 -0
  89. data/TODO.pdf/44-layer-support.md +20 -0
  90. data/TODO.pdf/45-image-clipping.md +17 -0
  91. data/TODO.pdf/46-spread-to-page-separation.md +19 -0
  92. data/TODO.pdf/47-pdf-bookmarks.md +17 -0
  93. data/TODO.pdf/48-table-rendering.md +20 -0
  94. data/TODO.pdf/49-gradient-fill-rendering.md +20 -0
  95. data/TODO.pdf/50-pdf-a-compliance.md +21 -0
  96. data/TODO.pdf/51-remove-dead-code.md +41 -0
  97. data/TODO.pdf/52-font-subsetting.md +22 -0
  98. data/TODO.pdf/53-tagged-pdf-accessibility.md +24 -0
  99. data/TODO.pdf/54-pdfrb-pipeline-specs.md +27 -0
  100. data/TODO.pdf/55-dead-code-deprecation.md +30 -0
  101. data/TODO.pdf/56-text-engine-pdfrb-integration.md +33 -0
  102. data/TODO.pdf/57-image-clipping-pdfrb.md +26 -0
  103. data/TODO.pdf/58-bookmarks-pdfrb.md +23 -0
  104. data/TODO.pdf/59-dry-placement-rect.md +15 -0
  105. data/TODO.pdf/60-cli-pdf-a-flag.md +16 -0
  106. data/TODO.pdf/README.md +21 -0
  107. data/exe/idml +5 -0
  108. data/idml.gemspec +39 -0
  109. data/lib/idml/cli.rb +105 -0
  110. data/lib/idml/composition/add_page_from_idml.rb +67 -0
  111. data/lib/idml/composition/export_xml.rb +70 -0
  112. data/lib/idml/composition/import_xml.rb +73 -0
  113. data/lib/idml/composition/insert_idml.rb +93 -0
  114. data/lib/idml/composition/prefix.rb +78 -0
  115. data/lib/idml/composition.rb +16 -0
  116. data/lib/idml/document.rb +87 -0
  117. data/lib/idml/elements/anchored_object_setting.rb +40 -0
  118. data/lib/idml/elements/baseline_frame_grid_option.rb +24 -0
  119. data/lib/idml/elements/bevel_and_emboss_setting.rb +48 -0
  120. data/lib/idml/elements/blending_setting.rb +24 -0
  121. data/lib/idml/elements/cell_style.rb +166 -0
  122. data/lib/idml/elements/cell_style_group.rb +18 -0
  123. data/lib/idml/elements/character_style.rb +302 -0
  124. data/lib/idml/elements/character_style_group.rb +18 -0
  125. data/lib/idml/elements/character_style_range.rb +670 -0
  126. data/lib/idml/elements/color.rb +48 -0
  127. data/lib/idml/elements/content.rb +16 -0
  128. data/lib/idml/elements/content_transparency_setting.rb +15 -0
  129. data/lib/idml/elements/contour_option.rb +30 -0
  130. data/lib/idml/elements/dashed_stroke_style.rb +26 -0
  131. data/lib/idml/elements/directional_feather_setting.rb +34 -0
  132. data/lib/idml/elements/document_object.rb +82 -0
  133. data/lib/idml/elements/dotted_stroke_style.rb +24 -0
  134. data/lib/idml/elements/drop_shadow_setting.rb +44 -0
  135. data/lib/idml/elements/feather_setting.rb +26 -0
  136. data/lib/idml/elements/fill_transparency_setting.rb +15 -0
  137. data/lib/idml/elements/flex_layout_attribute_option.rb +42 -0
  138. data/lib/idml/elements/font.rb +50 -0
  139. data/lib/idml/elements/font_family.rb +23 -0
  140. data/lib/idml/elements/frame_fitting_option.rb +30 -0
  141. data/lib/idml/elements/geometry_path_type.rb +24 -0
  142. data/lib/idml/elements/gradient.rb +34 -0
  143. data/lib/idml/elements/gradient_feather_setting.rb +30 -0
  144. data/lib/idml/elements/gradient_stop.rb +24 -0
  145. data/lib/idml/elements/graphic_line.rb +34 -0
  146. data/lib/idml/elements/group.rb +41 -0
  147. data/lib/idml/elements/image.rb +33 -0
  148. data/lib/idml/elements/ink.rb +36 -0
  149. data/lib/idml/elements/inner_glow_setting.rb +34 -0
  150. data/lib/idml/elements/inner_shadow_setting.rb +40 -0
  151. data/lib/idml/elements/layer.rb +35 -0
  152. data/lib/idml/elements/link.rb +25 -0
  153. data/lib/idml/elements/master_spread_object.rb +55 -0
  154. data/lib/idml/elements/mixed_ink.rb +46 -0
  155. data/lib/idml/elements/mixed_ink_group.rb +40 -0
  156. data/lib/idml/elements/object_export_option.rb +100 -0
  157. data/lib/idml/elements/object_style.rb +148 -0
  158. data/lib/idml/elements/object_style_content_effects_category_settings.rb +36 -0
  159. data/lib/idml/elements/object_style_export_tag_map.rb +28 -0
  160. data/lib/idml/elements/object_style_fill_effects_category_settings.rb +36 -0
  161. data/lib/idml/elements/object_style_group.rb +18 -0
  162. data/lib/idml/elements/object_style_object_effects_category_settings.rb +36 -0
  163. data/lib/idml/elements/object_style_stroke_effects_category_settings.rb +36 -0
  164. data/lib/idml/elements/opacity_gradient_stop.rb +24 -0
  165. data/lib/idml/elements/outer_glow_setting.rb +32 -0
  166. data/lib/idml/elements/page.rb +43 -0
  167. data/lib/idml/elements/paragraph_style.rb +600 -0
  168. data/lib/idml/elements/paragraph_style_group.rb +18 -0
  169. data/lib/idml/elements/paragraph_style_range.rb +673 -0
  170. data/lib/idml/elements/pasted_smooth_shade.rb +40 -0
  171. data/lib/idml/elements/path_geometry.rb +36 -0
  172. data/lib/idml/elements/path_point_array.rb +21 -0
  173. data/lib/idml/elements/path_point_type.rb +38 -0
  174. data/lib/idml/elements/polygon.rb +40 -0
  175. data/lib/idml/elements/pref_anchored_object_default.rb +26 -0
  176. data/lib/idml/elements/pref_button_preference.rb +18 -0
  177. data/lib/idml/elements/pref_chapter_number_preference.rb +20 -0
  178. data/lib/idml/elements/pref_cjk_grid_preference.rb +34 -0
  179. data/lib/idml/elements/pref_data_merge.rb +20 -0
  180. data/lib/idml/elements/pref_data_merge_field.rb +20 -0
  181. data/lib/idml/elements/pref_data_merge_option.rb +28 -0
  182. data/lib/idml/elements/pref_dictionary_preference.rb +22 -0
  183. data/lib/idml/elements/pref_document_preference.rb +66 -0
  184. data/lib/idml/elements/pref_e_pub_export_preference.rb +152 -0
  185. data/lib/idml/elements/pref_e_pub_fixed_layout_export_preference.rb +82 -0
  186. data/lib/idml/elements/pref_export_for_web_preference.rb +32 -0
  187. data/lib/idml/elements/pref_footnote_option.rb +78 -0
  188. data/lib/idml/elements/pref_grid_preference.rb +40 -0
  189. data/lib/idml/elements/pref_guide_preference.rb +26 -0
  190. data/lib/idml/elements/pref_html_export_preference.rb +94 -0
  191. data/lib/idml/elements/pref_index_header_setting.rb +26 -0
  192. data/lib/idml/elements/pref_index_options.rb +60 -0
  193. data/lib/idml/elements/pref_layout_adjustment_preference.rb +28 -0
  194. data/lib/idml/elements/pref_layout_grid_data_information.rb +28 -0
  195. data/lib/idml/elements/pref_margin_preference.rb +32 -0
  196. data/lib/idml/elements/pref_mojikumi_ui_preference.rb +18 -0
  197. data/lib/idml/elements/pref_page_item_default.rb +88 -0
  198. data/lib/idml/elements/pref_pasteboard_preference.rb +22 -0
  199. data/lib/idml/elements/pref_print_booklet_option.rb +40 -0
  200. data/lib/idml/elements/pref_print_booklet_print_preference.rb +188 -0
  201. data/lib/idml/elements/pref_print_preference.rb +198 -0
  202. data/lib/idml/elements/pref_story_grid_data_information.rb +40 -0
  203. data/lib/idml/elements/pref_text_default.rb +578 -0
  204. data/lib/idml/elements/pref_text_preference.rb +84 -0
  205. data/lib/idml/elements/pref_tin_document_data_object.rb +15 -0
  206. data/lib/idml/elements/pref_transparency_default_container_object.rb +15 -0
  207. data/lib/idml/elements/pref_transparency_preference.rb +22 -0
  208. data/lib/idml/elements/pref_view_preference.rb +50 -0
  209. data/lib/idml/elements/pref_xml_export_preference.rb +48 -0
  210. data/lib/idml/elements/pref_xml_import_preference.rb +36 -0
  211. data/lib/idml/elements/pref_xml_preference.rb +26 -0
  212. data/lib/idml/elements/properties.rb +24 -0
  213. data/lib/idml/elements/rectangle.rb +56 -0
  214. data/lib/idml/elements/root_cell_style_group.rb +21 -0
  215. data/lib/idml/elements/root_character_style_group.rb +21 -0
  216. data/lib/idml/elements/root_object_style_group.rb +21 -0
  217. data/lib/idml/elements/root_paragraph_style_group.rb +21 -0
  218. data/lib/idml/elements/root_table_style_group.rb +21 -0
  219. data/lib/idml/elements/satin_setting.rb +32 -0
  220. data/lib/idml/elements/spread_object.rb +64 -0
  221. data/lib/idml/elements/story_inner.rb +697 -0
  222. data/lib/idml/elements/story_preference.rb +26 -0
  223. data/lib/idml/elements/striped_stroke_style.rb +22 -0
  224. data/lib/idml/elements/stroke_style.rb +20 -0
  225. data/lib/idml/elements/stroke_transparency_setting.rb +15 -0
  226. data/lib/idml/elements/style_export_tag_map.rb +30 -0
  227. data/lib/idml/elements/swatch.rb +30 -0
  228. data/lib/idml/elements/table.rb +40 -0
  229. data/lib/idml/elements/table_cell.rb +24 -0
  230. data/lib/idml/elements/table_row.rb +28 -0
  231. data/lib/idml/elements/table_style.rb +260 -0
  232. data/lib/idml/elements/table_style_group.rb +18 -0
  233. data/lib/idml/elements/text_frame.rb +54 -0
  234. data/lib/idml/elements/text_frame_footnote_options_object.rb +24 -0
  235. data/lib/idml/elements/text_frame_preference.rb +90 -0
  236. data/lib/idml/elements/text_wrap_preference.rb +24 -0
  237. data/lib/idml/elements/tint.rb +44 -0
  238. data/lib/idml/elements/toc_style.rb +40 -0
  239. data/lib/idml/elements/toc_style_entry.rb +28 -0
  240. data/lib/idml/elements/transform_attribute_option.rb +30 -0
  241. data/lib/idml/elements/transparency_setting.rb +15 -0
  242. data/lib/idml/elements/trap_preset.rb +48 -0
  243. data/lib/idml/elements/xml_element.rb +41 -0
  244. data/lib/idml/elements/xml_export_map.rb +28 -0
  245. data/lib/idml/elements/xml_import_map.rb +22 -0
  246. data/lib/idml/elements/xml_story.rb +609 -0
  247. data/lib/idml/elements/xml_tag.rb +20 -0
  248. data/lib/idml/elements.rb +167 -0
  249. data/lib/idml/errors.rb +10 -0
  250. data/lib/idml/geometry.rb +110 -0
  251. data/lib/idml/namespace.rb +13 -0
  252. data/lib/idml/package.rb +213 -0
  253. data/lib/idml/part.rb +20 -0
  254. data/lib/idml/parts/backing_story.rb +27 -0
  255. data/lib/idml/parts/designmap.rb +91 -0
  256. data/lib/idml/parts/fonts.rb +26 -0
  257. data/lib/idml/parts/graphic.rb +48 -0
  258. data/lib/idml/parts/mapping.rb +25 -0
  259. data/lib/idml/parts/master_spread.rb +27 -0
  260. data/lib/idml/parts/preferences.rb +201 -0
  261. data/lib/idml/parts/raw.rb +27 -0
  262. data/lib/idml/parts/spread.rb +38 -0
  263. data/lib/idml/parts/story.rb +39 -0
  264. data/lib/idml/parts/style.rb +122 -0
  265. data/lib/idml/parts/style_mapping.rb +21 -0
  266. data/lib/idml/parts/tags.rb +25 -0
  267. data/lib/idml/parts.rb +47 -0
  268. data/lib/idml/render/color.rb +69 -0
  269. data/lib/idml/render/color_helper.rb +23 -0
  270. data/lib/idml/render/color_resolver.rb +72 -0
  271. data/lib/idml/render/font_embedder.rb +79 -0
  272. data/lib/idml/render/font_reference_resolver.rb +51 -0
  273. data/lib/idml/render/gradient_resolver.rb +111 -0
  274. data/lib/idml/render/image.rb +302 -0
  275. data/lib/idml/render/layer_filter.rb +60 -0
  276. data/lib/idml/render/page_item_renderer.rb +34 -0
  277. data/lib/idml/render/path.rb +80 -0
  278. data/lib/idml/render/pdf_writer.rb +426 -0
  279. data/lib/idml/render/pdfrb_ext/clip.rb +31 -0
  280. data/lib/idml/render/pdfrb_ext/invoke_xobject.rb +24 -0
  281. data/lib/idml/render/pdfrb_ext.rb +13 -0
  282. data/lib/idml/render/pdfrb_writer.rb +97 -0
  283. data/lib/idml/render/pipeline.rb +196 -0
  284. data/lib/idml/render/render_context.rb +22 -0
  285. data/lib/idml/render/renderers/graphic_line_renderer.rb +28 -0
  286. data/lib/idml/render/renderers/group_renderer.rb +42 -0
  287. data/lib/idml/render/renderers/polygon_renderer.rb +47 -0
  288. data/lib/idml/render/renderers/rectangle_renderer.rb +62 -0
  289. data/lib/idml/render/renderers/table_renderer.rb +41 -0
  290. data/lib/idml/render/renderers/text_frame_renderer.rb +113 -0
  291. data/lib/idml/render/renderers.rb +11 -0
  292. data/lib/idml/render/spread_renderer.rb +111 -0
  293. data/lib/idml/render/story_threader.rb +56 -0
  294. data/lib/idml/render/style_resolver.rb +48 -0
  295. data/lib/idml/render/text.rb +91 -0
  296. data/lib/idml/render.rb +63 -0
  297. data/lib/idml/text_engine/cjk_layout.rb +114 -0
  298. data/lib/idml/text_engine/font_metrics.rb +226 -0
  299. data/lib/idml/text_engine/font_resolver.rb +105 -0
  300. data/lib/idml/text_engine/justifier.rb +46 -0
  301. data/lib/idml/text_engine/line_breaker.rb +55 -0
  302. data/lib/idml/text_engine/shaper.rb +35 -0
  303. data/lib/idml/text_engine/vertical_layout.rb +64 -0
  304. data/lib/idml/text_engine.rb +19 -0
  305. data/lib/idml/validation/result.rb +14 -0
  306. data/lib/idml/validation/validator.rb +121 -0
  307. data/lib/idml/validation.rb +14 -0
  308. data/lib/idml/version.rb +5 -0
  309. data/lib/idml.rb +33 -0
  310. data/reference-docs/idml-specification.pdf +0 -0
  311. data/reference-docs/schemas/README.md +79 -0
  312. data/reference-docs/schemas/fix-adobe-schema-bug.rb +69 -0
  313. data/reference-docs/schemas/package/MasterSpreads/MasterSpread.rnc +4415 -0
  314. data/reference-docs/schemas/package/Resources/Fonts.rnc +93 -0
  315. data/reference-docs/schemas/package/Resources/Graphic.rnc +226 -0
  316. data/reference-docs/schemas/package/Resources/Preferences.rnc +1827 -0
  317. data/reference-docs/schemas/package/Resources/Styles.rnc +1770 -0
  318. data/reference-docs/schemas/package/Spreads/Spread.rnc +4431 -0
  319. data/reference-docs/schemas/package/Stories/Story.rnc +6547 -0
  320. data/reference-docs/schemas/package/XML/BackingStory.rnc +6527 -0
  321. data/reference-docs/schemas/package/XML/Mapping.rnc +35 -0
  322. data/reference-docs/schemas/package/XML/Tags.rnc +30 -0
  323. data/reference-docs/schemas/package/datatype.rnc +563 -0
  324. data/reference-docs/schemas/package/designmap.rnc +974 -0
  325. data/reference-docs/schemas/single/IDMarkupLanguage.rnc +11486 -0
  326. data/reference-docs/schemas/single/datatype.rnc +563 -0
  327. data/reference-docs/spec/00_index.md +16 -0
  328. data/reference-docs/spec/00_title/00_index.md +480 -0
  329. data/reference-docs/spec/01_abstract/00_index.md +3 -0
  330. data/reference-docs/spec/02_introduction/00_index.md +11 -0
  331. data/reference-docs/spec/03_terminology/00_index.md +7 -0
  332. data/reference-docs/spec/04_inx_idml_and_in_design_scripting/00_index.md +48 -0
  333. data/reference-docs/spec/05_uses_for_idml/00_index.md +13 -0
  334. data/reference-docs/spec/06_idml_design_goals/00_index.md +18 -0
  335. data/reference-docs/spec/07_idml_design_approaches/00_index.md +59 -0
  336. data/reference-docs/spec/08_idml_document_structure/00_index.md +120 -0
  337. data/reference-docs/spec/09_idml_syntax/00_index.md +367 -0
  338. data/reference-docs/spec/09_idml_syntax/examples/01_example_properties_expressed_as_attributes_or_elements_depending_on_their_value.md +6 -0
  339. data/reference-docs/spec/09_idml_syntax/examples/02_example_object_serialization.md +10 -0
  340. data/reference-docs/spec/09_idml_syntax/examples/03_example_record_type_serialization.md +6 -0
  341. data/reference-docs/spec/09_idml_syntax/examples/04_example_geometry_serialization.md +6 -0
  342. data/reference-docs/spec/09_idml_syntax/examples/index.md +10 -0
  343. data/reference-docs/spec/09_idml_syntax/images/image_01.md +1 -0
  344. data/reference-docs/spec/09_idml_syntax/images/image_01.png +0 -0
  345. data/reference-docs/spec/09_idml_syntax/images/image_02.md +1 -0
  346. data/reference-docs/spec/09_idml_syntax/images/image_02.png +0 -0
  347. data/reference-docs/spec/09_idml_syntax/images/image_03.md +1 -0
  348. data/reference-docs/spec/09_idml_syntax/images/image_03.png +0 -0
  349. data/reference-docs/spec/09_idml_syntax/images/image_04.md +1 -0
  350. data/reference-docs/spec/09_idml_syntax/images/image_04.png +0 -0
  351. data/reference-docs/spec/09_idml_syntax/images/image_05.md +1 -0
  352. data/reference-docs/spec/09_idml_syntax/images/image_05.png +0 -0
  353. data/reference-docs/spec/09_idml_syntax/images/image_06.md +1 -0
  354. data/reference-docs/spec/09_idml_syntax/images/image_06.png +0 -0
  355. data/reference-docs/spec/09_idml_syntax/images/index.md +12 -0
  356. data/reference-docs/spec/09_idml_syntax/schemas/00_schema_example_1_column_guide_color_and_margin_guide_color_elements.rnc +3 -0
  357. data/reference-docs/spec/09_idml_syntax/schemas/01_datatype.rnc +4 -0
  358. data/reference-docs/spec/09_idml_syntax/schemas/02_designmap.rnc +4 -0
  359. data/reference-docs/spec/09_idml_syntax/schemas/03_Master_Spreads.rnc +4 -0
  360. data/reference-docs/spec/09_idml_syntax/schemas/04_Fonts.rnc +4 -0
  361. data/reference-docs/spec/09_idml_syntax/schemas/05_Graphic.rnc +4 -0
  362. data/reference-docs/spec/09_idml_syntax/schemas/06_Preferences.rnc +4 -0
  363. data/reference-docs/spec/09_idml_syntax/schemas/07_Styles.rnc +4 -0
  364. data/reference-docs/spec/09_idml_syntax/schemas/08_Spread.rnc +4 -0
  365. data/reference-docs/spec/09_idml_syntax/schemas/09_Story.rnc +4 -0
  366. data/reference-docs/spec/09_idml_syntax/schemas/10_BackingStory.rnc +4 -0
  367. data/reference-docs/spec/09_idml_syntax/schemas/11_Mapping.rnc +4 -0
  368. data/reference-docs/spec/09_idml_syntax/schemas/12_Tags.rnc +4 -0
  369. data/reference-docs/spec/09_idml_syntax/schemas/index.md +19 -0
  370. data/reference-docs/spec/09_idml_syntax/tables/01_idml_basic_data_types.md +20 -0
  371. data/reference-docs/spec/09_idml_syntax/tables/02_property_elements.md +6 -0
  372. data/reference-docs/spec/09_idml_syntax/tables/index.md +8 -0
  373. data/reference-docs/spec/10_idml_file_reference/00_index.md +16 -0
  374. data/reference-docs/spec/10_idml_file_reference/10_10_mapping/examples/98_xml_export_map.md +1 -0
  375. data/reference-docs/spec/10_idml_file_reference/10_10_mapping/examples/99_xml_import_map.md +1 -0
  376. data/reference-docs/spec/10_idml_file_reference/10_10_mapping/index.md +44 -0
  377. data/reference-docs/spec/10_idml_file_reference/10_10_mapping/schemas/175_xml_export_map.rnc +1 -0
  378. data/reference-docs/spec/10_idml_file_reference/10_10_mapping/schemas/176_xml_import_map.rnc +1 -0
  379. data/reference-docs/spec/10_idml_file_reference/10_10_mapping/tables/191_xml_export_map_properties.md +7 -0
  380. data/reference-docs/spec/10_idml_file_reference/10_10_mapping/tables/192_xml_import_map_properties.md +4 -0
  381. data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/examples/100_example_xmltag.md +7 -0
  382. data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/imdex.md +42 -0
  383. data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/schemas/177_xmltag.rnc +10 -0
  384. data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/tables/193_xmltag_properties_attributes.md +3 -0
  385. data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/tables/194_xmltag_properties_elements.md +3 -0
  386. data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/examples/05_example_self.md +1 -0
  387. data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/examples/06_example_label.md +6 -0
  388. data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/index.md +96 -0
  389. data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/schemas/02_self.rnc +3 -0
  390. data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/schemas/03_label.rnc +7 -0
  391. data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/tables/label_attributes.md +8 -0
  392. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/07_example_document_element_references.md +26 -0
  393. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/08_example_document_element_designmap.md +25 -0
  394. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/09_example_color_management_attributes.md +10 -0
  395. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/10_example_tagged_pdf_preference_structure_order.md +1 -0
  396. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/11_example_text_variable.md +3 -0
  397. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/12_example_layer.md +5 -0
  398. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/13_example_building_block.md +1 -0
  399. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/14_example_hyperlink.md +7 -0
  400. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/15_example_article.md +4 -0
  401. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/index.md +1349 -0
  402. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/004_document.rnc +108 -0
  403. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/005_language.rnc +16 -0
  404. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/006_kinsokutable.rnc +13 -0
  405. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/007_numberinglist.rnc +11 -0
  406. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/007b_mojikumitable.rnc +14 -0
  407. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/008_namedgrid.rnc +10 -0
  408. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/009_griddatainformation.rnc +22 -0
  409. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/010_motionpreset.rnc +14 -0
  410. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/011_condition.rnc +14 -0
  411. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/012_conditionset.rnc +13 -0
  412. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/013_linkedstoryoption.rnc +5 -0
  413. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/014_taggedpdfpreference.rnc +1 -0
  414. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/015_metadatapacketpreference.rnc +1 -0
  415. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/016_watermarkpreference.rnc +18 -0
  416. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/016b_conditionaltextpreference.rnc +4 -0
  417. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/017_textvariable.rnc +22 -0
  418. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/018_customtextvariablepreference.rnc +14 -0
  419. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/019_filenamevariablepreference.rnc +6 -0
  420. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/020_pagenumbervariablepreference.rnc +6 -0
  421. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/021_chapternumbervariablepreference.rnc +5 -0
  422. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/022_datevariablepreference.rnc +5 -0
  423. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/023_matchcharacterstylepreference.rnc +8 -0
  424. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/024_matchparagraphstylepreference.rnc +8 -0
  425. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/025_captionmetadatavariablepreference.rnc +5 -0
  426. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/026_layer.rnc +19 -0
  427. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/027_section.rnc +25 -0
  428. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/028_documentuser.rnc +7 -0
  429. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/029_crossreferenceformat.rnc +11 -0
  430. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/030_buildingblock.rnc +8 -0
  431. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/031_index.rnc +9 -0
  432. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/032_topic.rnc +7 -0
  433. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/033_crossreference.rnc +11 -0
  434. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/034_hyperlink.rnc +34 -0
  435. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/035_hyperlinkpagedestination.rnc +17 -0
  436. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/036_hyperlinkurldestination.rnc +12 -0
  437. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/037_hyperlinkexternalpagedestination.rnc +17 -0
  438. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/038_hyperlinkpageitemsource.rnc +11 -0
  439. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/039_bookmark.rnc +11 -0
  440. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/040_preflightprofile.rnc +12 -0
  441. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/041_preflightprofilerule.rnc +13 -0
  442. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/042_ruledataobject.rnc +51 -0
  443. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/043_preflightruleinstance.rnc +13 -0
  444. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/044_datamergeimageplaceholder.rnc +5 -0
  445. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/045_hyphenationexception.rnc +6 -0
  446. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/046_indexingsortoption.rnc +8 -0
  447. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/047_abullet.rnc +28 -0
  448. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/048_assignment.rnc +21 -0
  449. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/049_assignedstory.rnc +11 -0
  450. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/051_article.rnc +11 -0
  451. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/052_articlemember.rnc +4 -0
  452. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/03_document_properties_attributes.md +28 -0
  453. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/04_document_properties_elements.md +2 -0
  454. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/05_language_properties_attributes.md +10 -0
  455. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/06_kinsokutable_properties_attributes.md +6 -0
  456. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/07_mojikumitable_properties_attributes.md +3 -0
  457. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/08_mojikumitable_properties_elements.md +4 -0
  458. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/09_numberinglist_properties_attributes.md +4 -0
  459. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/10_namedgrid_properties_attributes.md +3 -0
  460. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/11_griddatainformation_properties_attributes.md +14 -0
  461. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/12_griddatainformation_properties_elements.md +3 -0
  462. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/13_motionpreset_properties_attributes.md +6 -0
  463. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/14_motionpreset_properties_elements.md +3 -0
  464. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/15_condition_properties_attributes.md +6 -0
  465. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/16_condition_properties_elements.md +3 -0
  466. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/17_conditionset_properties_elements.md +3 -0
  467. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/18_linkedstoryoption_properties_attributes.md +5 -0
  468. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/19_taggedpdfpreference_structureorder_elements.md +3 -0
  469. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/20_metadatapacketpreference_properties_elements.md +3 -0
  470. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/21_watermarkpreference_properties_attributes.md +15 -0
  471. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/22_watermarkpreference_properties_elements.md +3 -0
  472. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/23_conditionaltextpreference_properties_attributes.md +4 -0
  473. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/24_textvariable_properties_attributes.md +4 -0
  474. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/25_common_text_variable_properties_attributes.md +4 -0
  475. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/26_custom_textvariable_preference_properties_elements.md +3 -0
  476. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/27_filename_variable_preference_properties_attributes.md +4 -0
  477. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/28_pagenumber_variable_preference_properties_attributes.md +4 -0
  478. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/29_chapternumber_variable_preference_properties_attributes.md +3 -0
  479. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/30_date_variable_preference_properties_attributes.md +3 -0
  480. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/31_matchcharacterstylepreference_properties_attributes.md +6 -0
  481. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/32_matchparagraphstylepreference_properties_attributes.md +6 -0
  482. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/33_captionmetadatavariablepreference_properties_attributes.md +3 -0
  483. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/34_metadata_provider_names.md +63 -0
  484. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/35_layer_properties_attributes.md +10 -0
  485. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/36_layer_properties_elements.md +3 -0
  486. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/37_section_properties_attributes.md +15 -0
  487. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/38_documentuser_properties_attributes.md +3 -0
  488. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/39_documentuser_properties_elements.md +3 -0
  489. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/40_crossreferenceformat_properties_attributes.md +4 -0
  490. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/41_buildingblock_properties_attributes.md +10 -0
  491. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/42_topic_properties_attributes.md +4 -0
  492. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/43_crossreference_properties_attributes.md +5 -0
  493. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/44_hyperlink_properties_attributes.md +10 -0
  494. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/45_hyperlinkpagedestination_properties_attributes.md +9 -0
  495. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/46_hyperlinkpagedestination_properties_elements.md +3 -0
  496. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/47_hyperlinkurldestination_properties_attributes.md +6 -0
  497. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/48_hyperlinkexternalpagedestination_properties_attributes.md +8 -0
  498. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/49_hyperlinkexternalpagedestination_properties_elements.md +3 -0
  499. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/50_hyperlinkpageitemsource_properties_attributes.md +8 -0
  500. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/51_bookmark_properties_attributes.md +4 -0
  501. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/52_preflightprofile_properties_attributes.md +3 -0
  502. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/53_preflightprofilerule_properties_attributes.md +5 -0
  503. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/54_ruledataobject_properties_attributes.md +4 -0
  504. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/55_ruledataobject_properties_elements.md +3 -0
  505. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/56_preflightruleinstance_properties_attributes.md +5 -0
  506. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/57_datamergeplaceholder_properties_attributes.md +4 -0
  507. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/58_hyphenationexception_properties_attributes.md +4 -0
  508. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/59_indexingsortoption_properties_attributes.md +5 -0
  509. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/60_abullet_properties_attributes.md +4 -0
  510. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/61_abullet_properties_elements.md +4 -0
  511. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/62_assignment_properties_attributes.md +9 -0
  512. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/62_assignment_properties_elements.md +3 -0
  513. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/63_article_properties_attributes.md +3 -0
  514. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/64_article_properties_elements.md +2 -0
  515. data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/65_articlemember_properties_attributes.md +3 -0
  516. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/16_example_minimal_spread.md +4 -0
  517. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/17_example_untransformed_rectangle.md +14 -0
  518. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/18_example_rotation_changes_the_itemtransform_attribute_in_idml.md +1 -0
  519. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/19_the_rectangle_transformed_by_itemtransform_attribute_of_both_the_rectangle_and_the_group.md +1 -0
  520. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/20_example_animation_setting.md +33 -0
  521. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/21_example_timing_setting.md +10 -0
  522. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/22_example_rectangle.md +14 -0
  523. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/23_example_nested_page_item.md +28 -0
  524. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/24_example_rotated_page_item.md +14 -0
  525. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/25_example_page_item_imported_graphic.md +28 -0
  526. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/26_example_movie.md +1 -0
  527. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/27_example_navigation_point.md +1 -0
  528. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/28_example_sound.md +1 -0
  529. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/29_example_text_frame.md +29 -0
  530. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/30_example_threaded_linked_textframes.md +1 -0
  531. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/31_example_text_frame_preference_single_inset.md +5 -0
  532. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/32_example_text_frame_preference_multiple_inset.md +10 -0
  533. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/33_example_multi_column_text_frame.md +24 -0
  534. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/34_example_baseline_frame_grid.md +5 -0
  535. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/35_example_transparency.md +5 -0
  536. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/36_example_group.md +1 -0
  537. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/37_example_button.md +43 -0
  538. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/38_example_multi_state_object.md +26 -0
  539. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/39_example_associating_frame_xml_element.md +5 -0
  540. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/40_example_associating_text_frame_xml_element.md +6 -0
  541. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/41_example_pages_within_spread.md +19 -0
  542. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/42_example_margin_preferences.md +1 -0
  543. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/43_example_guide.md +5 -0
  544. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/44_example_flattener_preference.md +7 -0
  545. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img001.png +0 -0
  546. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img002.png +0 -0
  547. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img003.png +0 -0
  548. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img004.png +0 -0
  549. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img005.png +0 -0
  550. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img006.png +0 -0
  551. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img007.png +0 -0
  552. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img008.png +0 -0
  553. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img009.png +0 -0
  554. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img010.png +0 -0
  555. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img011.png +0 -0
  556. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img012.png +0 -0
  557. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img013.png +0 -0
  558. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img014.png +0 -0
  559. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img015.png +0 -0
  560. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img016.png +0 -0
  561. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img017.png +0 -0
  562. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img018.png +0 -0
  563. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img019.png +0 -0
  564. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img020.png +0 -0
  565. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img021.png +0 -0
  566. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img022.png +0 -0
  567. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/index.md +1421 -0
  568. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/53_spread.rnc +30 -0
  569. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/54_master_spread.rnc +24 -0
  570. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/55_page_item.rnc +104 -0
  571. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/56_animation_setting.rnc +22 -0
  572. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/57_timing_setting.rnc +1 -0
  573. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/58_timing_list.rnc +2 -0
  574. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/60_timing_group.rnc +4 -0
  575. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/61_timing_target.rnc +7 -0
  576. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/62_graphic.rnc +41 -0
  577. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/63_pdf_attribute.rnc +3 -0
  578. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/64_navigation_point.rnc +4 -0
  579. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/65_text_frame.rnc +43 -0
  580. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/66_text_frame_preference.rnc +30 -0
  581. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/67_baseline_frame_grid.rnc +5 -0
  582. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/68_transparency_setting.rnc +1 -0
  583. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/69_blending_setting.rnc +3 -0
  584. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/70_button.rnc +96 -0
  585. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/71_state.rnc +20 -0
  586. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/72_behavior.rnc +5 -0
  587. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/73_multi_state_object.rnc +72 -0
  588. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/74_page.rnc +34 -0
  589. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/75_margin_preference.rnc +7 -0
  590. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/76_guide.rnc +12 -0
  591. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/77_flattener_preference.rnc +9 -0
  592. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/066_spread_masterspread_properties_as_attributes.md +15 -0
  593. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/067_masterspread_properties_as_elements.md +3 -0
  594. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/068_common_pageitem_properties_as_attributes.md +46 -0
  595. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/069_common_pageitem_properties_as_elements.md +3 -0
  596. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/070_animationsetting_properties_as_attributes.md +11 -0
  597. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/071_animationsetting_properties_as_elements.md +9 -0
  598. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/072_timinglist_properties_as_attributes.md +3 -0
  599. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/073_timinggroup_properties_as_attributes.md +4 -0
  600. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/074_timingtarget_properties_as_attributes.md +8 -0
  601. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/075_graphic_properties_as_attributes.md +3 -0
  602. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/076_graphic_properties_as_elements.md +6 -0
  603. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/077_image_properties_as_attributes.md +6 -0
  604. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/078_image_properties_as_elements.md +3 -0
  605. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/079_pdf_eps_properties_as_attributes.md +7 -0
  606. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/080_pdfattribute_properties_as_attributes.md +5 -0
  607. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/081_importedpage_properties_as_attributes.md +4 -0
  608. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/082_movie_properties_as_attributes.md +19 -0
  609. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/083_sound_properties_as_attributes.md +8 -0
  610. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/084_textframe_properties_as_attributes.md +5 -0
  611. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/085_textframe_preference_properties_as_attributes.md +22 -0
  612. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/086_textframe_preference_properties_as_elements.md +3 -0
  613. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/087_baselineframegrid_properties_expressed_as_attributes.md +6 -0
  614. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/088_baselineframegrid_properties_as_elements.md +3 -0
  615. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/089_button_properties_expressed_as_attributes.md +5 -0
  616. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/090_button_properties_expressed_as_properties.md +3 -0
  617. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/091_state_properties_as_attributes.md +6 -0
  618. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/092_common_behavior_properties_as_attributes.md +9 -0
  619. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/093_gotonextstatebehavior_properties_as_attributes.md +4 -0
  620. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/094_gotopreviousstatebehavior_properties_as_elements.md +3 -0
  621. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/095_gotostatebehavior_properties_as_attributes.md +4 -0
  622. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/096_gotostatebehavior_properties_as_attributes_2.md +4 -0
  623. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/097_animationbehavior_properties_as_attributes.md +8 -0
  624. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/097a_sound_showhide_openfile_viewzoom_gotopage_behavior_properties.md +9 -0
  625. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/098_multistateobject_properties_as_attributes.md +5 -0
  626. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/099_multistateobject_properties_as_elements.md +3 -0
  627. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/100_page_properties_as_attributes.md +17 -0
  628. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/101_page_properties_as_elements.md +3 -0
  629. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/102_guide_properties_as_attributes.md +11 -0
  630. data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/103_guide_properties_as_elements.md +3 -0
  631. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/45_example_story_file_in_idml_package.md +10 -0
  632. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/46_example_local_formatting_vs_styles.md +11 -0
  633. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/47_example_paragraph_style_range_character_style_range.md +14 -0
  634. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/48_example_paragraph_breaks_in_character_style_range.md +9 -0
  635. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/49_example_paragraph_style_range_elements_column_breaks.md +15 -0
  636. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/50_example_multiple_paragraph_style_range_elements.md +14 -0
  637. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/51_example_multi_column_straddle_paragraphs.md +25 -0
  638. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/52_example_xml_element.md +141 -0
  639. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/53_example_table.md +31 -0
  640. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/54_example_footnote.md +14 -0
  641. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/55_example_note.md +14 -0
  642. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/56_example_anchored_text_frame.md +31 -0
  643. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/57_example_anchored_graphic.md +39 -0
  644. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/58_example_hyperlink_text_source.md +11 -0
  645. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/59_example_hyperlink_text_destination.md +13 -0
  646. data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/60_example_cross_reference_source.md +11 -0
  647. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img001.png +0 -0
  648. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img002.png +0 -0
  649. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img003.png +0 -0
  650. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img004.png +0 -0
  651. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img005.png +0 -0
  652. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img006.png +0 -0
  653. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img007.png +0 -0
  654. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img008.png +0 -0
  655. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img009.png +0 -0
  656. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img010.png +0 -0
  657. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img011.png +0 -0
  658. data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img012.png +0 -0
  659. data/reference-docs/spec/10_idml_file_reference/10_4_stories/index.md +1299 -0
  660. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/78_story.rnc +92 -0
  661. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/79_paragraph_style_range.rnc +381 -0
  662. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/80_character_style_range.rnc +431 -0
  663. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/81_table.rnc +53 -0
  664. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/82_cell.rnc +66 -0
  665. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/83_column.rnc +28 -0
  666. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/84_row.rnc +33 -0
  667. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/85_footnote.rnc +7 -0
  668. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/86_note.rnc +13 -0
  669. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/87_anchored_object_settings.rnc +12 -0
  670. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/88_hyperlink_text_source.rnc +20 -0
  671. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/89_hyperlink_text_destination.rnc +5 -0
  672. data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/90_cross_reference_source.rnc +16 -0
  673. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/104_common_text_properties_attributes.md +230 -0
  674. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/105_common_text_properties_elements.md +41 -0
  675. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/106_story_properties_attributes.md +6 -0
  676. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/107_story_properties_elements.md +6 -0
  677. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/108_character_style_range_elements.md +3 -0
  678. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/109_table_properties_attributes.md +133 -0
  679. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/110_cell_properties_attributes.md +83 -0
  680. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/111_cell_properties_elements.md +3 -0
  681. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/112_column_properties_attributes.md +29 -0
  682. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/113_row_properties_attributes.md +34 -0
  683. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/114_anchored_object_setting_properties_attributes.md +14 -0
  684. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/115_hyperlink_text_source_properties_attributes.md +5 -0
  685. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/116_hyperlink_text_destination_properties_attributes.md +5 -0
  686. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/117_cross_reference_source_properties_attributes.md +6 -0
  687. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/118_applied_format_tags.md +11 -0
  688. data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/119_metacharacters.md +15 -0
  689. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/examples/61_example_font.md +3 -0
  690. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/examples/62_example_referring_to_font.md +6 -0
  691. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/index.md +86 -0
  692. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/091_font_family.rnc +1 -0
  693. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/092_font.rnc +1 -0
  694. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/093_composite_font.rnc +1 -0
  695. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/094_composite_font_entry.rnc +2 -0
  696. data/reference-docs/spec/10_idml_file_reference/10_5_fonts/tables/120_font_properties_represented_as_attributes.md +14 -0
  697. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/63_example_none_swatch.md +1 -0
  698. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/64_example_process_color.md +1 -0
  699. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/65_example_spot_color.md +1 -0
  700. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/66_example_lab_color.md +1 -0
  701. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/67_example_gradient.md +4 -0
  702. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/68_example_tint.md +1 -0
  703. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/69_example_mixed_ink.md +1 -0
  704. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/70_example_mixed_ink_group.md +1 -0
  705. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/71_example_process_magenta_ink.md +1 -0
  706. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/72_example_pantone_274_c_spot_ink.md +1 -0
  707. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/73_example_default_stroke_styles.md +18 -0
  708. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/74_example_dashed_stroke_style.md +1 -0
  709. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/75_example_dotted_stroke_style.md +1 -0
  710. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/76_example_striped_stroke_style.md +1 -0
  711. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img001.png +0 -0
  712. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img002.png +0 -0
  713. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img003.png +0 -0
  714. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img004.png +0 -0
  715. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img005.png +0 -0
  716. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img006.png +0 -0
  717. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img007.png +0 -0
  718. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img008.png +0 -0
  719. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img009.png +0 -0
  720. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img010.png +0 -0
  721. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img011.png +0 -0
  722. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img012.png +0 -0
  723. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/index.md +406 -0
  724. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/095_swatch.rnc +1 -0
  725. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/096_color.rnc +1 -0
  726. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/097_gradient.rnc +1 -0
  727. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/098_gradient_stop.rnc +1 -0
  728. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/099_tint.rnc +1 -0
  729. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/100_mixed_ink.rnc +1 -0
  730. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/101_mixed_ink_group.rnc +1 -0
  731. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/102_ink.rnc +1 -0
  732. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/103_stroke_style.rnc +1 -0
  733. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/104_dashed_stroke_style.rnc +1 -0
  734. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/105_dotted_stroke_style.rnc +1 -0
  735. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/106_striped_stroke_style.rnc +1 -0
  736. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/121_swatch_properties.md +7 -0
  737. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/122_color_properties.md +10 -0
  738. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/123_gradient_properties.md +3 -0
  739. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/124_gradient_stop_properties.md +5 -0
  740. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/125_tint_properties.md +6 -0
  741. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/126_mixed_ink_properties.md +10 -0
  742. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/127_mixed_ink_group_properties.md +7 -0
  743. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/128_ink_properties.md +11 -0
  744. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/129_stroke_style_properties.md +3 -0
  745. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/130_dashed_stroke_style_properties.md +6 -0
  746. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/131_dotted_stroke_style_properties.md +5 -0
  747. data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/132_striped_stroke_style_properties.md +4 -0
  748. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/77_epub_export_preference.md +1 -0
  749. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/78_html_export_preference.md +1 -0
  750. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/79_transparency_preference.md +1 -0
  751. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/80_story_preference.md +1 -0
  752. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/81_anchored_object_default.md +1 -0
  753. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/82_anchored_object_setting.md +1 -0
  754. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/83_baseline_frame_grid_option.md +5 -0
  755. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/84_footnote_options.md +1 -0
  756. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/85_text_wrap_preference.md +1 -0
  757. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/86_document_preference.md +1 -0
  758. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/87_grid_preference.md +2 -0
  759. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/88_guide_preference.md +5 -0
  760. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/index.md +1153 -0
  761. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/107_Preferences_File.rnc +2 -0
  762. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/108_DataMerge.rnc +1 -0
  763. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/109_DataMergeField.rnc +1 -0
  764. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/110_DataMergeOption.rnc +1 -0
  765. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/111_LayoutAdjustmentPreference.rnc +1 -0
  766. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/112_EPubExportPreference.rnc +1 -0
  767. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/113_HTMLExportPreference.rnc +1 -0
  768. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/114_XMLImportPreference.rnc +1 -0
  769. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/115_XMLExport_Preference.rnc +1 -0
  770. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/116_XMLPreference.rnc +1 -0
  771. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/117_Export_For_Web_Preference.rnc +1 -0
  772. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/118_Transparency_Preference.rnc +1 -0
  773. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/119_Transparency_Default_Container_Object.rnc +1 -0
  774. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/120_StoryPreference.rnc +8 -0
  775. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/121_Text_Preference.rnc +1 -0
  776. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/122_Text_Default.rnc +1 -0
  777. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/123_DictionaryPreference.rnc +1 -0
  778. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/124_AnchoredObjectDefault.rnc +1 -0
  779. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/125_AnchoredObjectSetting.rnc +1 -0
  780. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/126_BaselineFrameGridOption.rnc +1 -0
  781. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/127_FootnoteOption.rnc +1 -0
  782. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/128_TextWrapPreference.rnc +3 -0
  783. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/129_Contour_Option.rnc +1 -0
  784. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/130_Document_Preference.rnc +1 -0
  785. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/131_Grid_Preference.rnc +1 -0
  786. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/132_GuidePreference.rnc +1 -0
  787. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/133_MarginPreference.rnc +1 -0
  788. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/134_Pasteboard_Preference.rnc +1 -0
  789. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/135_View_Preference.rnc +1 -0
  790. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/136_Print_Preference.rnc +1 -0
  791. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/137_Print_Booklet_Option.rnc +1 -0
  792. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/138_Print_Booklet_Print_Preference.rnc +1 -0
  793. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/139_Index_Options.rnc +1 -0
  794. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/140_Index_Header_Setting.rnc +1 -0
  795. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/141_Page_Item_Default.rnc +1 -0
  796. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/142_Frame_Fitting_Option.rnc +1 -0
  797. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/143_Button_Preference.rnc +1 -0
  798. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/144_Tin_Document_Data_Object.rnc +1 -0
  799. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/145_Layout_Grid_Data_Information.rnc +1 -0
  800. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/146_Story_Grid_Data_Information.rnc +1 -0
  801. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/147_Cjk_Grid_Preference.rnc +1 -0
  802. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/148_Mojikumi_Ui_Preference.rnc +1 -0
  803. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/149_Chapter_Number_Preference.rnc +1 -0
  804. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/133_DataMerge_Properties_Represented_as_Attributes.md +4 -0
  805. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/134_DataMergeField_Properties_Represented_as_Attributes.md +3 -0
  806. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/135_DataMergeOption_Properties_Represented_as_Attributes.md +8 -0
  807. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/136_LayoutAdjustmentPreference_Properties_Represented_as_Attributes.md +8 -0
  808. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/137_EPubExportPreference_Properties_Represented_as_Attributes.md +44 -0
  809. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/138_HTMLExportPreference_Properties_Represented_as_Attributes.md +39 -0
  810. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/139_XMLImportPreference_Properties_Represented_as_Attributes.md +12 -0
  811. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/140_XMLImportPreference_Properties_Represented_as_Elements.md +4 -0
  812. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/141_XMLExportPreference_Properties_Represented_as_Attributes.md +21 -0
  813. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/142_XMLExport_Preference_Properties_Represented_as_Elements.md +4 -0
  814. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/143_XMLPreference_Properties_Represented_as_Attributes.md +9 -0
  815. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/144_XMLPreference_Properties_Represented_as_Elements.md +6 -0
  816. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/145_ExportForWebPreference_Properties_Represented_as_Attributes.md +10 -0
  817. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/146_TransparencyPreference_Properties_Represented_as_Attributes.md +5 -0
  818. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/147_StoryPreference_Properties_Represented_as_Attributes.md +7 -0
  819. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/148_TextPreference_Properties_Represented_as_Attributes.md +33 -0
  820. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/149_AnchoredObjectDefault_Properties_Represented_as_Attributes.md +7 -0
  821. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/150_AnchoredObjectSetting_Properties_Represented_as_Attributes.md +14 -0
  822. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/151_BaselineFrameGridOption_Properties_Represented_as_Attributes.md +6 -0
  823. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/152_BaselineFrameGridOption_Properties_Represented_as_Elements.md +3 -0
  824. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/153_FootnoteOption_Properties_Represented_as_Attributes.md +33 -0
  825. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/154_FootnoteOption_Properties_Represented_as_Elements.md +12 -0
  826. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/155_Contour_Option_Properties_Represented_as_Attributes.md +5 -0
  827. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/156_DocumentPreference_Properties_Represented_as_Attributes.md +26 -0
  828. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/157_DocumentPreference_Properties_Represented_as_Elements.md +4 -0
  829. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/158_Grid_Preference_Properties_Represented_as_Attributes.md +14 -0
  830. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/159_GridPreference_Properties_Represented_as_Elements.md +4 -0
  831. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/160_GuidePreference_Properties_Represented_as_Attributes.md +7 -0
  832. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/161_GuidePreference_Properties_Represented_as_Elements.md +3 -0
  833. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/162_PasteboardPreference_Properties_Represented_as_Attributes.md +3 -0
  834. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/163_PasteboardPreference_Properties_Represented_as_Elements.md +5 -0
  835. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/164_ViewPreference_Properties_Represented_as_Attributes.md +20 -0
  836. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/165_Print_Preference_Properties_Represented_as_Attributes.md +104 -0
  837. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/166_Print_Preference_Properties_Represented_as_Elements.md +15 -0
  838. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/167_Cjk_Grid_Preference_Properties_Represented_as_Attributes.md +11 -0
  839. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/168_Cjk_Grid_Preference_Properties_Represented_as_Elements.md +3 -0
  840. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/169_Mojikumi_Ui_Preference_Properties_Represented_as_Attributes.md +3 -0
  841. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/170_Chapter_Number_Preference_Properties_Represented_as_Attributes.md +4 -0
  842. data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/171_Chapter_Number_Preference_Properties_Represented_as_Elements.md +3 -0
  843. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/001_paragraph_style_self_attribute.md +3 -0
  844. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/002_paragraph_style_group_nested.md +3 -0
  845. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/089_paragraph_style_group.md +14 -0
  846. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/090_based_on_no_paragraph_style.md +3 -0
  847. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/091_based_on_another_style.md +4 -0
  848. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/092_nested_style.md +3 -0
  849. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/093_character_style_group.md +4 -0
  850. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/094_object_style.md +3 -0
  851. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/095_toc_style.md +10 -0
  852. data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/096_trap_preset.md +3 -0
  853. data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img001.png +0 -0
  854. data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img002.png +0 -0
  855. data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img003.png +0 -0
  856. data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img004.png +0 -0
  857. data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img005.png +0 -0
  858. data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img006.png +0 -0
  859. data/reference-docs/spec/10_idml_file_reference/10_8_styles/index.md +1154 -0
  860. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/150_paragraphstylegroup.rnc +9 -0
  861. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/151_paragraphstyle.rnc +510 -0
  862. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/152_nestedstyle.rnc +19 -0
  863. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/153_characterstylegroup.rnc +7 -0
  864. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/154_characterstyle.rnc +255 -0
  865. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/155_styleexporttagmap.rnc +7 -0
  866. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/156_tablestylegroup.rnc +9 -0
  867. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/157_tablestyle.rnc +118 -0
  868. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/158_cellstylegroup.rnc +7 -0
  869. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/159_cellstyle.rnc +135 -0
  870. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/160_objectstylegroup.rnc +9 -0
  871. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/161_objectstyle.rnc +79 -0
  872. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/162_objectstyleobjecteffectscategorysettings.rnc +12 -0
  873. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/163_objectstyle_effects_category_settings.rnc +12 -0
  874. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/164_objectstyle_effects_category_settings.rnc +12 -0
  875. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/165_objectstyle_effects_category_settings.rnc +12 -0
  876. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/166_tocstyle_tocstyleentry.rnc +16 -0
  877. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/167_tocstyle_tocstyleentry.rnc +22 -0
  878. data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/168_trappreset.rnc +21 -0
  879. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/172_paragraph_style_properties_represented_as_attributes.md +5 -0
  880. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/173_paragraph_style_properties_represented_as_elements.md +3 -0
  881. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/174_nestedstyle_properties_represented_as_elements.md +6 -0
  882. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/175_characterstyle_properties_represented_as_attributes.md +7 -0
  883. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/176_characterstyle_properties_represented_as_elements.md +3 -0
  884. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/177_styleexporttagmap_properties_represented_as_attributes.md +6 -0
  885. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/178_tablestyle_properties_represented_as_attributes.md +109 -0
  886. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/179_tablestyle_properties_represented_as_elements.md +3 -0
  887. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/180_cellstyle_properties_represented_as_elements.md +3 -0
  888. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/181_tocstyle_properties_represented_as_attributes.md +11 -0
  889. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/182_tocstyle_entry_properties_represented_as_attributes.md +8 -0
  890. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/183_tocstyleentry_properties_represented_as_elements.md +7 -0
  891. data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/184_trappreset_properties_represented_as_attributes.md +17 -0
  892. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/examples/97_example_backingstory.md +1 -0
  893. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/index.md +101 -0
  894. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/169_BackingStory.rnc +4 -0
  895. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/170_XMLElement.rnc +37 -0
  896. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/171_XMLAttribute.rnc +5 -0
  897. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/172_XMLInstruction.rnc +5 -0
  898. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/173_XMLComment.rnc +4 -0
  899. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/174_DTD.rnc +13 -0
  900. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/185_XMLElement_Properties_Represented_as_Attributes.md +7 -0
  901. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/186_XMLAttribute_Properties_Represented_as_Attributes.md +6 -0
  902. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/187_XMLInstruction_Properties_Represented_as_Attributes.md +7 -0
  903. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/188_XMLComment_Properties_Represented_as_Attributes.md +6 -0
  904. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/189_DTD_Properties_Represented_as_Attributes.md +5 -0
  905. data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/190_DTD_Properties_Represented_as_Elements.md +5 -0
  906. data/reference-docs/spec/appendix/00_index.md +7 -0
  907. data/reference-docs/spec/appendix/a_appendix.md +467 -0
  908. data/reference-docs/spec/appendix/b_appendix.md +81 -0
  909. data/reference-docs/spec/appendix/c_appendix.md +3192 -0
  910. data/reference-docs/spec/appendix/d_appendix.md +7 -0
  911. data/reference-docs/spec/appendix/e_appendix.md +224 -0
  912. data/scripts/assemble_element.rb +90 -0
  913. data/scripts/assemble_part.rb +57 -0
  914. data/scripts/build_elements_autoloads.rb +46 -0
  915. data/scripts/generate_all_objects.rb +38 -0
  916. data/scripts/rnc_to_lutaml.rb +114 -0
  917. metadata +1043 -0
@@ -0,0 +1,4415 @@
1
+ # Adobe InDesign 2026 21.5.0.64
2
+
3
+ datatypes xsd = "http://www.w3.org/2001/XMLSchema-datatypes"
4
+ namespace idPkg="http://ns.adobe.com/AdobeInDesign/idml/1.0/packaging"
5
+
6
+ grammar {
7
+ start = MasterSpread_File
8
+
9
+ include "../datatype.rnc"
10
+
11
+ MasterSpread_File = element idPkg:MasterSpread {
12
+ attribute DOMVersion { "21.5" },
13
+ (
14
+ MasterSpread_Object*
15
+ )
16
+ }
17
+
18
+ MasterSpread_Object = element MasterSpread {
19
+ attribute Self { xsd:string },
20
+ attribute Name { xsd:string }?,
21
+ attribute NamePrefix { xsd:string }?,
22
+ attribute BaseName { xsd:string }?,
23
+ attribute ShowMasterItems { xsd:boolean }?,
24
+ attribute PageCount { xsd:int }?,
25
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
26
+ attribute PrimaryTextFrame { xsd:string }?,
27
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
28
+ element Properties {
29
+ element PageColor {
30
+ (InDesignUIColorType_TypeDef ) |
31
+ (enum_type, PageColorOptions_EnumValue )
32
+ }?&
33
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
34
+ }?
35
+ }
36
+ ?
37
+ ,
38
+ (
39
+ FormField_Object*&
40
+ Button_Object*&
41
+ MultiStateObject_Object*&
42
+ CheckBox_Object*&
43
+ ComboBox_Object*&
44
+ ListBox_Object*&
45
+ RadioButton_Object*&
46
+ TextBox_Object*&
47
+ SignatureField_Object*&
48
+ FlexObject_Object*&
49
+ Group_Object*&
50
+ EPSText_Object*&
51
+ TimingSetting_Object?&
52
+ Oval_Object*&
53
+ Rectangle_Object*&
54
+ GraphicLine_Object*&
55
+ TextFrame_Object*&
56
+ Polygon_Object*&
57
+ EndnoteTextFrame_Object*&
58
+ Page_Object*
59
+ )
60
+ }
61
+
62
+ FormField_Object = element FormField {
63
+ attribute Self { xsd:string },
64
+ attribute Name { xsd:string }?,
65
+ attribute Description { xsd:string }?,
66
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
67
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
68
+ attribute AllowOverrides { xsd:boolean }?,
69
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
70
+ (FlexEnum_EnumValue )
71
+ }?,
72
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
73
+ (FlexEnum_EnumValue )
74
+ }?,
75
+ attribute Visible { xsd:boolean }?,
76
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
77
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
78
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
79
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
80
+ attribute TopLeftCornerRadius { xsd:double }?,
81
+ attribute TopRightCornerRadius { xsd:double }?,
82
+ attribute BottomLeftCornerRadius { xsd:double }?,
83
+ attribute BottomRightCornerRadius { xsd:double }?,
84
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
85
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
86
+ attribute FillColor { xsd:string }?,
87
+ attribute FillTint { xsd:double }?,
88
+ attribute OverprintFill { xsd:boolean }?,
89
+ attribute CornerRadius { xsd:double }?,
90
+ attribute StrokeWeight { xsd:double }?,
91
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
92
+ attribute EndCap { EndCap_EnumValue }?,
93
+ attribute EndJoin { EndJoin_EnumValue }?,
94
+ attribute StrokeType { xsd:string }?,
95
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
96
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
97
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
98
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
99
+ attribute StrokeColor { xsd:string }?,
100
+ attribute StrokeTint { xsd:double }?,
101
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
102
+ attribute GradientFillLength { xsd:double }?,
103
+ attribute GradientFillAngle { xsd:double }?,
104
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
105
+ attribute GradientStrokeLength { xsd:double }?,
106
+ attribute GradientStrokeAngle { xsd:double }?,
107
+ attribute OverprintStroke { xsd:boolean }?,
108
+ attribute GapColor { xsd:string }?,
109
+ attribute GapTint { xsd:double }?,
110
+ attribute OverprintGap { xsd:boolean }?,
111
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
112
+ attribute Nonprinting { xsd:boolean }?,
113
+ attribute ItemLayer { xsd:string }?,
114
+ attribute Locked { xsd:boolean }?,
115
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
116
+ attribute GradientFillHiliteLength { xsd:double }?,
117
+ attribute GradientFillHiliteAngle { xsd:double }?,
118
+ attribute GradientStrokeHiliteLength { xsd:double }?,
119
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
120
+ attribute AppliedObjectStyle { xsd:string }?,
121
+ attribute CornerOption { CornerOptions_EnumValue }?,
122
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
123
+ attribute LeftArrowHeadScale { xsd:double }?,
124
+ attribute RightArrowHeadScale { xsd:double }?,
125
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
126
+ attribute BeforeGroupingLayerReference { xsd:string }?,
127
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
128
+ attribute LinkResourceId { xsd:int }?,
129
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
130
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
131
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
132
+ attribute LinkedSourceTableId { xsd:int }?,
133
+ element Properties {
134
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
135
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
136
+ }?&
137
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
138
+ }?
139
+ }
140
+ ?
141
+ ,
142
+ (
143
+ AnchoredObjectSetting_Object?&
144
+ AnimationSetting_Object?&
145
+ TimingSetting_Object?&
146
+ TextWrapPreference_Object?&
147
+ LinkedPageItemOption_Object?&
148
+ Link_Object*&
149
+ Behavior_Object*&
150
+ GotoFirstPageBehavior_Object*&
151
+ GotoLastPageBehavior_Object*&
152
+ GotoNextPageBehavior_Object*&
153
+ GotoPreviousPageBehavior_Object*&
154
+ GotoNextViewBehavior_Object*&
155
+ GotoPreviousViewBehavior_Object*&
156
+ GotoURLBehavior_Object*&
157
+ GotoAnchorBehavior_Object*&
158
+ MovieBehavior_Object*&
159
+ SoundBehavior_Object*&
160
+ ShowHideFieldsBehavior_Object*&
161
+ OpenFileBehavior_Object*&
162
+ ViewZoomBehavior_Object*&
163
+ CloseWindowBehavior_Object*&
164
+ QuitBehavior_Object*&
165
+ GotoPageBehavior_Object*&
166
+ TransparencySetting_Object?&
167
+ SVG_Object*&
168
+ Graphic_Object*
169
+ )
170
+ }
171
+
172
+ AnchoredObjectSetting_Object = element AnchoredObjectSetting {
173
+ attribute AnchoredPosition { AnchorPosition_EnumValue }?,
174
+ attribute SpineRelative { xsd:boolean }?,
175
+ attribute LockPosition { xsd:boolean }?,
176
+ attribute PinPosition { xsd:boolean }?,
177
+ attribute AnchorPoint { AnchorPoint_EnumValue }?,
178
+ attribute HorizontalAlignment { HorizontalAlignment_EnumValue }?,
179
+ attribute HorizontalReferencePoint { AnchoredRelativeTo_EnumValue }?,
180
+ attribute VerticalAlignment { VerticalAlignment_EnumValue }?,
181
+ attribute VerticalReferencePoint { VerticallyRelativeTo_EnumValue }?,
182
+ attribute AnchorXoffset { xsd:double }?,
183
+ attribute AnchorYoffset { xsd:double }?,
184
+ attribute AnchorSpaceAbove { xsd:double }?
185
+ }
186
+
187
+ AnimationSetting_Object = element AnimationSetting {
188
+ attribute TransformOffsets { list { xsd:double ,xsd:double } }?,
189
+ attribute Duration { xsd:double {minInclusive="0.125" maxInclusive="60"} }?,
190
+ attribute DesignOption { DesignOptions_EnumValue }?,
191
+ attribute EaseType { AnimationEaseOptions_EnumValue }?,
192
+ attribute Plays { xsd:int {minInclusive="1" maxInclusive="100"} }?,
193
+ attribute PlaysLoop { xsd:boolean }?,
194
+ attribute InitiallyHidden { xsd:boolean }?,
195
+ attribute HiddenAfter { xsd:boolean }?,
196
+ attribute HasCustomSettings { xsd:boolean }?,
197
+ element Properties {
198
+ element Preset {
199
+ (object_type, xsd:string ) |
200
+ (string_type, xsd:string ) |
201
+ (enum_type, NothingEnum_EnumValue )
202
+ }?&
203
+ element MotionPathPoints { GeometryPathType_TypeDef }?&
204
+ element MotionPath { element AnimationDataPathKeyFrameType { AnimationDataPathKeyFrameType_TypeDef }*
205
+ }?&
206
+ element OpacityArray { element AnimationDataKeyFrameType { AnimationDataKeyFrameType_TypeDef }*
207
+ }?&
208
+ element RotationArray { element AnimationDataKeyFrameType { AnimationDataKeyFrameType_TypeDef }*
209
+ }?&
210
+ element ScaleXArray { element AnimationDataKeyFrameType { AnimationDataKeyFrameType_TypeDef }*
211
+ }?&
212
+ element ScaleYArray { element AnimationDataKeyFrameType { AnimationDataKeyFrameType_TypeDef }*
213
+ }?
214
+ }
215
+ ?
216
+ }
217
+
218
+ TextWrapPreference_Object = element TextWrapPreference {
219
+ attribute Inverse { xsd:boolean }?,
220
+ attribute ApplyToMasterPageOnly { xsd:boolean }?,
221
+ attribute TextWrapSide { TextWrapSideOptions_EnumValue }?,
222
+ attribute TextWrapMode { TextWrapModes_EnumValue }?,
223
+ element Properties {
224
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
225
+ }?&
226
+ element TextWrapOffset { UnitRectangleBoundsType_TypeDef }?
227
+ }
228
+ ?
229
+ ,
230
+ (
231
+ ContourOption_Object?
232
+ )
233
+ }
234
+
235
+ ContourOption_Object = element ContourOption {
236
+ attribute ContourType { ContourOptionsTypes_EnumValue }?,
237
+ attribute IncludeInsideEdges { xsd:boolean }?,
238
+ attribute ContourPathName { xsd:string }?,
239
+ attribute ContourTolerance { xsd:double }?,
240
+ attribute ContourThreshold { xsd:short }?,
241
+ attribute ContourAlphaIndex { xsd:short }?,
242
+ attribute ContourPathIndex { xsd:short }?
243
+ }
244
+
245
+ LinkedPageItemOption_Object = element LinkedPageItemOption {
246
+ attribute UpdateLinkWhileSaving { xsd:boolean }?,
247
+ attribute WarnOnUpdateOfEditedPageItem { xsd:boolean }?,
248
+ attribute PreserveSizeAndShape { xsd:boolean }?,
249
+ attribute PreserveAppearance { xsd:boolean }?,
250
+ attribute PreserveInteractivity { xsd:boolean }?,
251
+ attribute PreserveFrameContent { xsd:boolean }?,
252
+ attribute PreserveOthers { xsd:boolean }?
253
+ }
254
+
255
+ Link_Object = element Link {
256
+ attribute Self { xsd:string },
257
+ attribute AssetURL { xsd:string }?,
258
+ attribute AssetID { xsd:string }?,
259
+ attribute LinkResourceURI { xsd:string },
260
+ attribute LinkResourceFormat { xsd:string }?,
261
+ attribute StoredState { LinkResourceStoreState_EnumValue }?,
262
+ attribute LinkClassID { xsd:int }?,
263
+ attribute LinkClientID { xsd:int }?,
264
+ attribute LinkResourceModified { xsd:boolean }?,
265
+ attribute LinkObjectModified { xsd:boolean }?,
266
+ attribute ShowInUI { xsd:boolean }?,
267
+ attribute CanEmbed { xsd:boolean }?,
268
+ attribute CanUnembed { xsd:boolean }?,
269
+ attribute CanPackage { xsd:boolean }?,
270
+ attribute ImportPolicy { LinkImportPolicy_EnumValue }?,
271
+ attribute ExportPolicy { LinkExportPolicy_EnumValue }?,
272
+ attribute LinkImportStamp { xsd:string }?,
273
+ attribute LinkImportModificationTime { xsd:dateTime }?,
274
+ attribute LinkImportTime { xsd:dateTime }?,
275
+ attribute LinkExportTime { xsd:dateTime }?,
276
+ attribute LinkResourceSize { text }?,
277
+ attribute RenditionData { LinkResourceRenditionType_EnumValue }?,
278
+ attribute PDFIdentifier { xsd:int }?,
279
+ attribute SourceObjectName { xsd:string }?,
280
+ attribute AiGeneratedAsset { xsd:boolean }?,
281
+ attribute AiFullyGeneratedAsset { xsd:boolean }?,
282
+ attribute AiC2paArchiveData { xsd:string }?,
283
+ element Properties {
284
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
285
+ }?
286
+ }
287
+ ?
288
+ }
289
+
290
+ Behavior_Object = element Behavior {
291
+ attribute Self { xsd:string },
292
+ attribute Name { xsd:string }?,
293
+ attribute EnableBehavior { xsd:boolean }?,
294
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
295
+ element Properties {
296
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
297
+ }?
298
+ }
299
+ ?
300
+ }
301
+
302
+ GotoFirstPageBehavior_Object = element GotoFirstPageBehavior {
303
+ attribute Self { xsd:string },
304
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
305
+ attribute Name { xsd:string }?,
306
+ attribute EnableBehavior { xsd:boolean }?,
307
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
308
+ element Properties {
309
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
310
+ }?
311
+ }
312
+ ?
313
+ }
314
+
315
+ GotoLastPageBehavior_Object = element GotoLastPageBehavior {
316
+ attribute Self { xsd:string },
317
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
318
+ attribute Name { xsd:string }?,
319
+ attribute EnableBehavior { xsd:boolean }?,
320
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
321
+ element Properties {
322
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
323
+ }?
324
+ }
325
+ ?
326
+ }
327
+
328
+ GotoNextPageBehavior_Object = element GotoNextPageBehavior {
329
+ attribute Self { xsd:string },
330
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
331
+ attribute Name { xsd:string }?,
332
+ attribute EnableBehavior { xsd:boolean }?,
333
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
334
+ element Properties {
335
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
336
+ }?
337
+ }
338
+ ?
339
+ }
340
+
341
+ GotoPreviousPageBehavior_Object = element GotoPreviousPageBehavior {
342
+ attribute Self { xsd:string },
343
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
344
+ attribute Name { xsd:string }?,
345
+ attribute EnableBehavior { xsd:boolean }?,
346
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
347
+ element Properties {
348
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
349
+ }?
350
+ }
351
+ ?
352
+ }
353
+
354
+ GotoNextViewBehavior_Object = element GotoNextViewBehavior {
355
+ attribute Self { xsd:string },
356
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
357
+ attribute Name { xsd:string }?,
358
+ attribute EnableBehavior { xsd:boolean }?,
359
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
360
+ element Properties {
361
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
362
+ }?
363
+ }
364
+ ?
365
+ }
366
+
367
+ GotoPreviousViewBehavior_Object = element GotoPreviousViewBehavior {
368
+ attribute Self { xsd:string },
369
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
370
+ attribute Name { xsd:string }?,
371
+ attribute EnableBehavior { xsd:boolean }?,
372
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
373
+ element Properties {
374
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
375
+ }?
376
+ }
377
+ ?
378
+ }
379
+
380
+ GotoURLBehavior_Object = element GotoURLBehavior {
381
+ attribute Self { xsd:string },
382
+ attribute URL { xsd:string }?,
383
+ attribute Name { xsd:string }?,
384
+ attribute EnableBehavior { xsd:boolean }?,
385
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
386
+ element Properties {
387
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
388
+ }?
389
+ }
390
+ ?
391
+ }
392
+
393
+ GotoAnchorBehavior_Object = element GotoAnchorBehavior {
394
+ attribute Self { xsd:string },
395
+ attribute AnchorName { xsd:string }?,
396
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
397
+ attribute FilePath { xsd:string }?,
398
+ attribute Name { xsd:string }?,
399
+ attribute EnableBehavior { xsd:boolean }?,
400
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
401
+ element Properties {
402
+ element AnchorItem {
403
+ (object_type, xsd:string ) |
404
+ (long_type, xsd:int )
405
+ }?&
406
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
407
+ }?
408
+ }
409
+ ?
410
+ }
411
+
412
+ MovieBehavior_Object = element MovieBehavior {
413
+ attribute Self { xsd:string },
414
+ attribute MovieItem { xsd:string }?,
415
+ attribute NavigationPointID { xsd:int }?,
416
+ attribute Operation { MoviePlayOperations_EnumValue }?,
417
+ attribute Name { xsd:string }?,
418
+ attribute EnableBehavior { xsd:boolean }?,
419
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
420
+ element Properties {
421
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
422
+ }?
423
+ }
424
+ ?
425
+ }
426
+
427
+ SoundBehavior_Object = element SoundBehavior {
428
+ attribute Self { xsd:string },
429
+ attribute SoundItem { xsd:string }?,
430
+ attribute Operation { PlayOperations_EnumValue }?,
431
+ attribute Name { xsd:string }?,
432
+ attribute EnableBehavior { xsd:boolean }?,
433
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
434
+ element Properties {
435
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
436
+ }?
437
+ }
438
+ ?
439
+ }
440
+
441
+ ShowHideFieldsBehavior_Object = element ShowHideFieldsBehavior {
442
+ attribute Self { xsd:string },
443
+ attribute FieldsToHide { list { xsd:string * } }?,
444
+ attribute FieldsToShow { list { xsd:string * } }?,
445
+ attribute Name { xsd:string }?,
446
+ attribute EnableBehavior { xsd:boolean }?,
447
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
448
+ element Properties {
449
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
450
+ }?
451
+ }
452
+ ?
453
+ }
454
+
455
+ OpenFileBehavior_Object = element OpenFileBehavior {
456
+ attribute Self { xsd:string },
457
+ attribute FilePath { xsd:string }?,
458
+ attribute Name { xsd:string }?,
459
+ attribute EnableBehavior { xsd:boolean }?,
460
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
461
+ element Properties {
462
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
463
+ }?
464
+ }
465
+ ?
466
+ }
467
+
468
+ ViewZoomBehavior_Object = element ViewZoomBehavior {
469
+ attribute Self { xsd:string },
470
+ attribute ViewZoomStyle { ViewZoomStyle_EnumValue }?,
471
+ attribute Name { xsd:string }?,
472
+ attribute EnableBehavior { xsd:boolean }?,
473
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
474
+ element Properties {
475
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
476
+ }?
477
+ }
478
+ ?
479
+ }
480
+
481
+ CloseWindowBehavior_Object = element CloseWindowBehavior {
482
+ attribute Self { xsd:string },
483
+ attribute Name { xsd:string }?,
484
+ attribute EnableBehavior { xsd:boolean }?,
485
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
486
+ element Properties {
487
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
488
+ }?
489
+ }
490
+ ?
491
+ }
492
+
493
+ QuitBehavior_Object = element QuitBehavior {
494
+ attribute Self { xsd:string },
495
+ attribute Name { xsd:string }?,
496
+ attribute EnableBehavior { xsd:boolean }?,
497
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
498
+ element Properties {
499
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
500
+ }?
501
+ }
502
+ ?
503
+ }
504
+
505
+ GotoPageBehavior_Object = element GotoPageBehavior {
506
+ attribute Self { xsd:string },
507
+ attribute ZoomSetting { GoToZoomOptions_EnumValue }?,
508
+ attribute PageNumber { xsd:int }?,
509
+ attribute Name { xsd:string }?,
510
+ attribute EnableBehavior { xsd:boolean }?,
511
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
512
+ element Properties {
513
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
514
+ }?
515
+ }
516
+ ?
517
+ }
518
+
519
+ TransparencySetting_Object = element TransparencySetting {
520
+ (
521
+ BlendingSetting_Object?&
522
+ DropShadowSetting_Object?&
523
+ FeatherSetting_Object?&
524
+ InnerShadowSetting_Object?&
525
+ OuterGlowSetting_Object?&
526
+ InnerGlowSetting_Object?&
527
+ BevelAndEmbossSetting_Object?&
528
+ SatinSetting_Object?&
529
+ DirectionalFeatherSetting_Object?&
530
+ GradientFeatherSetting_Object?
531
+ )
532
+ }
533
+
534
+ BlendingSetting_Object = element BlendingSetting {
535
+ attribute BlendMode { BlendMode_EnumValue }?,
536
+ attribute Opacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
537
+ attribute KnockoutGroup { xsd:boolean }?,
538
+ attribute IsolateBlending { xsd:boolean }?
539
+ }
540
+
541
+ DropShadowSetting_Object = element DropShadowSetting {
542
+ attribute Mode { ShadowMode_EnumValue }?,
543
+ attribute BlendMode { BlendMode_EnumValue }?,
544
+ attribute Opacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
545
+ attribute XOffset { xsd:double {minInclusive="-1000" maxInclusive="1000"} }?,
546
+ attribute YOffset { xsd:double {minInclusive="-1000" maxInclusive="1000"} }?,
547
+ attribute Size { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
548
+ attribute EffectColor { xsd:string }?,
549
+ attribute Noise { xsd:double {minInclusive="0" maxInclusive="100"} }?,
550
+ attribute Spread { xsd:double {minInclusive="0" maxInclusive="100"} }?,
551
+ attribute UseGlobalLight { xsd:boolean }?,
552
+ attribute KnockedOut { xsd:boolean }?,
553
+ attribute HonorOtherEffects { xsd:boolean }?,
554
+ attribute Distance { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
555
+ attribute Angle { xsd:double {minInclusive="-180" maxInclusive="180"} }?
556
+ }
557
+
558
+ FeatherSetting_Object = element FeatherSetting {
559
+ attribute Mode { FeatherMode_EnumValue }?,
560
+ attribute Width { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
561
+ attribute CornerType { FeatherCornerType_EnumValue }?,
562
+ attribute Noise { xsd:double {minInclusive="0" maxInclusive="100"} }?,
563
+ attribute ChokeAmount { xsd:double {minInclusive="0" maxInclusive="100"} }?
564
+ }
565
+
566
+ InnerShadowSetting_Object = element InnerShadowSetting {
567
+ attribute Applied { xsd:boolean }?,
568
+ attribute EffectColor { xsd:string }?,
569
+ attribute BlendMode { BlendMode_EnumValue }?,
570
+ attribute Opacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
571
+ attribute Angle { xsd:double {minInclusive="-180" maxInclusive="180"} }?,
572
+ attribute Distance { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
573
+ attribute UseGlobalLight { xsd:boolean }?,
574
+ attribute ChokeAmount { xsd:double {minInclusive="0" maxInclusive="100"} }?,
575
+ attribute Size { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
576
+ attribute Noise { xsd:double {minInclusive="0" maxInclusive="100"} }?,
577
+ attribute XOffset { xsd:double {minInclusive="-1000" maxInclusive="1000"} }?,
578
+ attribute YOffset { xsd:double {minInclusive="-1000" maxInclusive="1000"} }?
579
+ }
580
+
581
+ OuterGlowSetting_Object = element OuterGlowSetting {
582
+ attribute Applied { xsd:boolean }?,
583
+ attribute BlendMode { BlendMode_EnumValue }?,
584
+ attribute Opacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
585
+ attribute Noise { xsd:double {minInclusive="0" maxInclusive="100"} }?,
586
+ attribute EffectColor { xsd:string }?,
587
+ attribute Technique { GlowTechnique_EnumValue }?,
588
+ attribute Spread { xsd:double {minInclusive="0" maxInclusive="100"} }?,
589
+ attribute Size { xsd:double {minInclusive="0" maxInclusive="1000"} }?
590
+ }
591
+
592
+ InnerGlowSetting_Object = element InnerGlowSetting {
593
+ attribute Applied { xsd:boolean }?,
594
+ attribute BlendMode { BlendMode_EnumValue }?,
595
+ attribute Opacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
596
+ attribute Noise { xsd:double {minInclusive="0" maxInclusive="100"} }?,
597
+ attribute EffectColor { xsd:string }?,
598
+ attribute Technique { GlowTechnique_EnumValue }?,
599
+ attribute Spread { xsd:double {minInclusive="0" maxInclusive="100"} }?,
600
+ attribute Size { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
601
+ attribute Source { InnerGlowSource_EnumValue }?
602
+ }
603
+
604
+ BevelAndEmbossSetting_Object = element BevelAndEmbossSetting {
605
+ attribute Applied { xsd:boolean }?,
606
+ attribute Style { BevelAndEmbossStyle_EnumValue }?,
607
+ attribute Technique { BevelAndEmbossTechnique_EnumValue }?,
608
+ attribute Depth { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
609
+ attribute Direction { BevelAndEmbossDirection_EnumValue }?,
610
+ attribute Size { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
611
+ attribute Soften { xsd:double {minInclusive="0" maxInclusive="144"} }?,
612
+ attribute Angle { xsd:double {minInclusive="-180" maxInclusive="180"} }?,
613
+ attribute Altitude { xsd:double {minInclusive="0" maxInclusive="100"} }?,
614
+ attribute UseGlobalLight { xsd:boolean }?,
615
+ attribute HighlightColor { xsd:string }?,
616
+ attribute HighlightBlendMode { BlendMode_EnumValue }?,
617
+ attribute HighlightOpacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
618
+ attribute ShadowColor { xsd:string }?,
619
+ attribute ShadowBlendMode { BlendMode_EnumValue }?,
620
+ attribute ShadowOpacity { xsd:double {minInclusive="0" maxInclusive="100"} }?
621
+ }
622
+
623
+ SatinSetting_Object = element SatinSetting {
624
+ attribute Applied { xsd:boolean }?,
625
+ attribute EffectColor { xsd:string }?,
626
+ attribute BlendMode { BlendMode_EnumValue }?,
627
+ attribute Opacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
628
+ attribute Angle { xsd:double {minInclusive="-180" maxInclusive="180"} }?,
629
+ attribute Distance { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
630
+ attribute Size { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
631
+ attribute InvertEffect { xsd:boolean }?
632
+ }
633
+
634
+ DirectionalFeatherSetting_Object = element DirectionalFeatherSetting {
635
+ attribute Applied { xsd:boolean }?,
636
+ attribute LeftWidth { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
637
+ attribute RightWidth { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
638
+ attribute TopWidth { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
639
+ attribute BottomWidth { xsd:double {minInclusive="0" maxInclusive="1000"} }?,
640
+ attribute ChokeAmount { xsd:double {minInclusive="0" maxInclusive="100"} }?,
641
+ attribute Angle { xsd:double {minInclusive="-180" maxInclusive="180"} }?,
642
+ attribute FollowShapeMode { FollowShapeModeOptions_EnumValue }?,
643
+ attribute Noise { xsd:double {minInclusive="0" maxInclusive="100"} }?
644
+ }
645
+
646
+ GradientFeatherSetting_Object = element GradientFeatherSetting {
647
+ attribute Applied { xsd:boolean }?,
648
+ attribute Type { GradientType_EnumValue }?,
649
+ attribute Angle { xsd:double {minInclusive="-180" maxInclusive="180"} }?,
650
+ attribute Length { xsd:double }?,
651
+ attribute GradientStart { UnitPointType_TypeDef }?,
652
+ attribute HiliteAngle { xsd:double }?,
653
+ attribute HiliteLength { xsd:double }?,
654
+ (
655
+ OpacityGradientStop_Object*
656
+ )
657
+ }
658
+
659
+ OpacityGradientStop_Object = element OpacityGradientStop {
660
+ attribute Self { xsd:string },
661
+ attribute Opacity { xsd:double {minInclusive="0" maxInclusive="100"} }?,
662
+ attribute Location { xsd:double {minInclusive="0" maxInclusive="100"} }?,
663
+ attribute Midpoint { xsd:double {minInclusive="13" maxInclusive="87"} }?
664
+ }
665
+
666
+ SVG_Object = element SVG {
667
+ attribute Self { xsd:string },
668
+ attribute Nonprinting { xsd:boolean }?,
669
+ attribute UseSVGAs { UseSVGAsEnum_EnumValue }?,
670
+ attribute IsMathMLObject { xsd:boolean }?,
671
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
672
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
673
+ attribute ImageTypeName { xsd:string }?,
674
+ attribute AppliedObjectStyle { xsd:string }?,
675
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
676
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
677
+ (FlexEnum_EnumValue )
678
+ }?,
679
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
680
+ (FlexEnum_EnumValue )
681
+ }?,
682
+ attribute Visible { xsd:boolean }?,
683
+ attribute Name { xsd:string }?,
684
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
685
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
686
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
687
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
688
+ attribute TopLeftCornerRadius { xsd:double }?,
689
+ attribute TopRightCornerRadius { xsd:double }?,
690
+ attribute BottomLeftCornerRadius { xsd:double }?,
691
+ attribute BottomRightCornerRadius { xsd:double }?,
692
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
693
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
694
+ attribute FillColor { xsd:string }?,
695
+ attribute FillTint { xsd:double }?,
696
+ attribute OverprintFill { xsd:boolean }?,
697
+ attribute CornerRadius { xsd:double }?,
698
+ attribute StrokeWeight { xsd:double }?,
699
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
700
+ attribute EndCap { EndCap_EnumValue }?,
701
+ attribute EndJoin { EndJoin_EnumValue }?,
702
+ attribute StrokeType { xsd:string }?,
703
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
704
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
705
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
706
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
707
+ attribute StrokeColor { xsd:string }?,
708
+ attribute StrokeTint { xsd:double }?,
709
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
710
+ attribute GradientFillLength { xsd:double }?,
711
+ attribute GradientFillAngle { xsd:double }?,
712
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
713
+ attribute GradientStrokeLength { xsd:double }?,
714
+ attribute GradientStrokeAngle { xsd:double }?,
715
+ attribute OverprintStroke { xsd:boolean }?,
716
+ attribute GapColor { xsd:string }?,
717
+ attribute GapTint { xsd:double }?,
718
+ attribute OverprintGap { xsd:boolean }?,
719
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
720
+ attribute ItemLayer { xsd:string }?,
721
+ attribute Locked { xsd:boolean }?,
722
+ attribute GradientFillHiliteLength { xsd:double }?,
723
+ attribute GradientFillHiliteAngle { xsd:double }?,
724
+ attribute GradientStrokeHiliteLength { xsd:double }?,
725
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
726
+ attribute CornerOption { CornerOptions_EnumValue }?,
727
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
728
+ attribute LeftArrowHeadScale { xsd:double }?,
729
+ attribute RightArrowHeadScale { xsd:double }?,
730
+ attribute BeforeGroupingLayerReference { xsd:string }?,
731
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
732
+ attribute LinkResourceId { xsd:int }?,
733
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
734
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
735
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
736
+ attribute LinkedSourceTableId { xsd:int }?,
737
+ element Properties {
738
+ element Contents { text }?&
739
+ element GraphicProxy { text }?&
740
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
741
+ }?&
742
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
743
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
744
+ }?
745
+ }
746
+ ?
747
+ ,
748
+ (
749
+ AnimationSetting_Object?&
750
+ TimingSetting_Object?&
751
+ TextWrapPreference_Object?&
752
+ LinkedPageItemOption_Object?&
753
+ Link_Object*&
754
+ MetadataPacketPreference_Object?&
755
+ TransparencySetting_Object?&
756
+ SVG_Object*&
757
+ Graphic_Object*&
758
+ TextMessageQRCode_Object*&
759
+ EmailQRCode_Object*&
760
+ PlainTextQRCode_Object*&
761
+ HyperlinkQRCode_Object*&
762
+ VCardQRCode_Object*
763
+ )
764
+ }
765
+
766
+ MetadataPacketPreference_Object = element MetadataPacketPreference {
767
+ element Properties {
768
+ element Contents { xsd:string }?
769
+ }
770
+ ?
771
+ }
772
+
773
+ TextMessageQRCode_Object = element TextMessageQRCode {
774
+ attribute Self { xsd:string },
775
+ attribute TextMessage { xsd:string }?,
776
+ attribute CellNumber { xsd:string }?,
777
+ element Properties {
778
+ element QrCodeSwatch {
779
+ (object_type, xsd:string ) |
780
+ (string_type, xsd:string )
781
+ }?&
782
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
783
+ }?
784
+ }
785
+ ?
786
+ }
787
+
788
+ EmailQRCode_Object = element EmailQRCode {
789
+ attribute Self { xsd:string },
790
+ attribute EmailAddress { xsd:string }?,
791
+ attribute Subject { xsd:string }?,
792
+ attribute Body { xsd:string }?,
793
+ element Properties {
794
+ element QrCodeSwatch {
795
+ (object_type, xsd:string ) |
796
+ (string_type, xsd:string )
797
+ }?&
798
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
799
+ }?
800
+ }
801
+ ?
802
+ }
803
+
804
+ PlainTextQRCode_Object = element PlainTextQRCode {
805
+ attribute Self { xsd:string },
806
+ attribute PlainText { xsd:string }?,
807
+ element Properties {
808
+ element QrCodeSwatch {
809
+ (object_type, xsd:string ) |
810
+ (string_type, xsd:string )
811
+ }?&
812
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
813
+ }?
814
+ }
815
+ ?
816
+ }
817
+
818
+ HyperlinkQRCode_Object = element HyperlinkQRCode {
819
+ attribute Self { xsd:string },
820
+ attribute UrlLink { xsd:string }?,
821
+ element Properties {
822
+ element QrCodeSwatch {
823
+ (object_type, xsd:string ) |
824
+ (string_type, xsd:string )
825
+ }?&
826
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
827
+ }?
828
+ }
829
+ ?
830
+ }
831
+
832
+ VCardQRCode_Object = element VCardQRCode {
833
+ attribute Self { xsd:string },
834
+ attribute Website { xsd:string }?,
835
+ attribute PostalCode { xsd:string }?,
836
+ attribute Country { xsd:string }?,
837
+ attribute City { xsd:string }?,
838
+ attribute AdrState { xsd:string }?,
839
+ attribute StreetAddress { xsd:string }?,
840
+ attribute Organisation { xsd:string }?,
841
+ attribute Email { xsd:string }?,
842
+ attribute Phone { xsd:string }?,
843
+ attribute CellPhone { xsd:string }?,
844
+ attribute JobTitle { xsd:string }?,
845
+ attribute LastName { xsd:string }?,
846
+ attribute FirstName { xsd:string }?,
847
+ element Properties {
848
+ element QrCodeSwatch {
849
+ (object_type, xsd:string ) |
850
+ (string_type, xsd:string )
851
+ }?&
852
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
853
+ }?
854
+ }
855
+ ?
856
+ }
857
+
858
+ Graphic_Object = element Graphic {
859
+ attribute Self { xsd:string },
860
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
861
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
862
+ attribute ImageTypeName { xsd:string }?,
863
+ attribute AppliedObjectStyle { xsd:string }?,
864
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
865
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
866
+ (FlexEnum_EnumValue )
867
+ }?,
868
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
869
+ (FlexEnum_EnumValue )
870
+ }?,
871
+ attribute Visible { xsd:boolean }?,
872
+ attribute Name { xsd:string }?,
873
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
874
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
875
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
876
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
877
+ attribute TopLeftCornerRadius { xsd:double }?,
878
+ attribute TopRightCornerRadius { xsd:double }?,
879
+ attribute BottomLeftCornerRadius { xsd:double }?,
880
+ attribute BottomRightCornerRadius { xsd:double }?,
881
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
882
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
883
+ attribute FillColor { xsd:string }?,
884
+ attribute FillTint { xsd:double }?,
885
+ attribute OverprintFill { xsd:boolean }?,
886
+ attribute CornerRadius { xsd:double }?,
887
+ attribute StrokeWeight { xsd:double }?,
888
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
889
+ attribute EndCap { EndCap_EnumValue }?,
890
+ attribute EndJoin { EndJoin_EnumValue }?,
891
+ attribute StrokeType { xsd:string }?,
892
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
893
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
894
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
895
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
896
+ attribute StrokeColor { xsd:string }?,
897
+ attribute StrokeTint { xsd:double }?,
898
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
899
+ attribute GradientFillLength { xsd:double }?,
900
+ attribute GradientFillAngle { xsd:double }?,
901
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
902
+ attribute GradientStrokeLength { xsd:double }?,
903
+ attribute GradientStrokeAngle { xsd:double }?,
904
+ attribute OverprintStroke { xsd:boolean }?,
905
+ attribute GapColor { xsd:string }?,
906
+ attribute GapTint { xsd:double }?,
907
+ attribute OverprintGap { xsd:boolean }?,
908
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
909
+ attribute Nonprinting { xsd:boolean }?,
910
+ attribute ItemLayer { xsd:string }?,
911
+ attribute Locked { xsd:boolean }?,
912
+ attribute GradientFillHiliteLength { xsd:double }?,
913
+ attribute GradientFillHiliteAngle { xsd:double }?,
914
+ attribute GradientStrokeHiliteLength { xsd:double }?,
915
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
916
+ attribute CornerOption { CornerOptions_EnumValue }?,
917
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
918
+ attribute LeftArrowHeadScale { xsd:double }?,
919
+ attribute RightArrowHeadScale { xsd:double }?,
920
+ attribute BeforeGroupingLayerReference { xsd:string }?,
921
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
922
+ attribute LinkResourceId { xsd:int }?,
923
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
924
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
925
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
926
+ attribute LinkedSourceTableId { xsd:int }?,
927
+ element Properties {
928
+ element Contents { text }?&
929
+ element GraphicProxy { text }?&
930
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
931
+ }?&
932
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
933
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
934
+ }?
935
+ }
936
+ ?
937
+ ,
938
+ (
939
+ AnimationSetting_Object?&
940
+ TimingSetting_Object?&
941
+ TextWrapPreference_Object?&
942
+ LinkedPageItemOption_Object?&
943
+ Link_Object*&
944
+ MetadataPacketPreference_Object?&
945
+ TransparencySetting_Object?&
946
+ SVG_Object*&
947
+ Graphic_Object*
948
+ )
949
+ }
950
+
951
+ Button_Object = element Button {
952
+ attribute Self { xsd:string },
953
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
954
+ attribute PrintableInPdf { xsd:boolean }?,
955
+ attribute HiddenUntilTriggered { xsd:boolean }?,
956
+ attribute Name { xsd:string }?,
957
+ attribute Description { xsd:string }?,
958
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
959
+ attribute AllowOverrides { xsd:boolean }?,
960
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
961
+ (FlexEnum_EnumValue )
962
+ }?,
963
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
964
+ (FlexEnum_EnumValue )
965
+ }?,
966
+ attribute Visible { xsd:boolean }?,
967
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
968
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
969
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
970
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
971
+ attribute TopLeftCornerRadius { xsd:double }?,
972
+ attribute TopRightCornerRadius { xsd:double }?,
973
+ attribute BottomLeftCornerRadius { xsd:double }?,
974
+ attribute BottomRightCornerRadius { xsd:double }?,
975
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
976
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
977
+ attribute FillColor { xsd:string }?,
978
+ attribute FillTint { xsd:double }?,
979
+ attribute OverprintFill { xsd:boolean }?,
980
+ attribute CornerRadius { xsd:double }?,
981
+ attribute StrokeWeight { xsd:double }?,
982
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
983
+ attribute EndCap { EndCap_EnumValue }?,
984
+ attribute EndJoin { EndJoin_EnumValue }?,
985
+ attribute StrokeType { xsd:string }?,
986
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
987
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
988
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
989
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
990
+ attribute StrokeColor { xsd:string }?,
991
+ attribute StrokeTint { xsd:double }?,
992
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
993
+ attribute GradientFillLength { xsd:double }?,
994
+ attribute GradientFillAngle { xsd:double }?,
995
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
996
+ attribute GradientStrokeLength { xsd:double }?,
997
+ attribute GradientStrokeAngle { xsd:double }?,
998
+ attribute OverprintStroke { xsd:boolean }?,
999
+ attribute GapColor { xsd:string }?,
1000
+ attribute GapTint { xsd:double }?,
1001
+ attribute OverprintGap { xsd:boolean }?,
1002
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1003
+ attribute Nonprinting { xsd:boolean }?,
1004
+ attribute ItemLayer { xsd:string }?,
1005
+ attribute Locked { xsd:boolean }?,
1006
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1007
+ attribute GradientFillHiliteLength { xsd:double }?,
1008
+ attribute GradientFillHiliteAngle { xsd:double }?,
1009
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1010
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1011
+ attribute AppliedObjectStyle { xsd:string }?,
1012
+ attribute CornerOption { CornerOptions_EnumValue }?,
1013
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1014
+ attribute LeftArrowHeadScale { xsd:double }?,
1015
+ attribute RightArrowHeadScale { xsd:double }?,
1016
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1017
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1018
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1019
+ attribute LinkResourceId { xsd:int }?,
1020
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1021
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1022
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1023
+ attribute LinkedSourceTableId { xsd:int }?,
1024
+ element Properties {
1025
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
1026
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1027
+ }?&
1028
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1029
+ }?
1030
+ }
1031
+ ?
1032
+ ,
1033
+ (
1034
+ (AnchoredObjectSetting_Object?&
1035
+ AnimationSetting_Object?&
1036
+ TextWrapPreference_Object?&
1037
+ LinkedPageItemOption_Object?&
1038
+ TransparencySetting_Object?),
1039
+ TimingSetting_Object?,
1040
+ (State_Object*&
1041
+ Graphic_Object*&
1042
+ Link_Object*&
1043
+ Behavior_Object*&
1044
+ GotoFirstPageBehavior_Object*&
1045
+ GotoLastPageBehavior_Object*&
1046
+ GotoNextPageBehavior_Object*&
1047
+ GotoPreviousPageBehavior_Object*&
1048
+ GotoNextViewBehavior_Object*&
1049
+ GotoPreviousViewBehavior_Object*&
1050
+ GotoURLBehavior_Object*&
1051
+ GotoAnchorBehavior_Object*&
1052
+ MovieBehavior_Object*&
1053
+ SoundBehavior_Object*&
1054
+ ShowHideFieldsBehavior_Object*&
1055
+ OpenFileBehavior_Object*&
1056
+ ViewZoomBehavior_Object*&
1057
+ AnimationBehavior_Object*&
1058
+ GotoNextStateBehavior_Object*&
1059
+ GotoPreviousStateBehavior_Object*&
1060
+ GotoStateBehavior_Object*&
1061
+ GotoPageBehavior_Object*&
1062
+ SubmitFormBehavior_Object*&
1063
+ ClearFormBehavior_Object*&
1064
+ PrintFormBehavior_Object*&
1065
+ SVG_Object*)
1066
+ )
1067
+ }
1068
+
1069
+ State_Object = element State {
1070
+ attribute Self { xsd:string },
1071
+ attribute Active { xsd:boolean }?,
1072
+ attribute Enabled { xsd:boolean }?,
1073
+ element Properties {
1074
+ element Statetype {
1075
+ (enum_type, StateTypes_EnumValue ) |
1076
+ (long_type, xsd:int )
1077
+ }?
1078
+ }
1079
+ ?
1080
+ ,
1081
+ (
1082
+ Image_Object*&
1083
+ Graphic_Object*&
1084
+ EPS_Object*&
1085
+ WMF_Object*&
1086
+ PICT_Object*&
1087
+ PDF_Object*&
1088
+ Group_Object*&
1089
+ EPSText_Object*&
1090
+ Oval_Object*&
1091
+ Rectangle_Object*&
1092
+ GraphicLine_Object*&
1093
+ TextFrame_Object*&
1094
+ Polygon_Object*&
1095
+ EndnoteTextFrame_Object*&
1096
+ SVG_Object*
1097
+ )
1098
+ }
1099
+
1100
+ Image_Object = element Image {
1101
+ attribute Self { xsd:string },
1102
+ attribute FillColor { xsd:string }?,
1103
+ attribute FillTint { xsd:double }?,
1104
+ attribute OverprintFill { xsd:boolean }?,
1105
+ attribute Nonprinting { xsd:boolean }?,
1106
+ attribute Space { xsd:string }?,
1107
+ attribute ActualPpi { list { xsd:double ,xsd:double } }?,
1108
+ attribute EffectivePpi { list { xsd:double ,xsd:double } }?,
1109
+ attribute ImageRenderingIntent { RenderingIntent_EnumValue }?,
1110
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1111
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1112
+ attribute ImageTypeName { xsd:string }?,
1113
+ attribute AppliedObjectStyle { xsd:string }?,
1114
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1115
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1116
+ (FlexEnum_EnumValue )
1117
+ }?,
1118
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1119
+ (FlexEnum_EnumValue )
1120
+ }?,
1121
+ attribute Visible { xsd:boolean }?,
1122
+ attribute Name { xsd:string }?,
1123
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1124
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1125
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1126
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1127
+ attribute TopLeftCornerRadius { xsd:double }?,
1128
+ attribute TopRightCornerRadius { xsd:double }?,
1129
+ attribute BottomLeftCornerRadius { xsd:double }?,
1130
+ attribute BottomRightCornerRadius { xsd:double }?,
1131
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1132
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1133
+ attribute CornerRadius { xsd:double }?,
1134
+ attribute StrokeWeight { xsd:double }?,
1135
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
1136
+ attribute EndCap { EndCap_EnumValue }?,
1137
+ attribute EndJoin { EndJoin_EnumValue }?,
1138
+ attribute StrokeType { xsd:string }?,
1139
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
1140
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
1141
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
1142
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
1143
+ attribute StrokeColor { xsd:string }?,
1144
+ attribute StrokeTint { xsd:double }?,
1145
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
1146
+ attribute GradientFillLength { xsd:double }?,
1147
+ attribute GradientFillAngle { xsd:double }?,
1148
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
1149
+ attribute GradientStrokeLength { xsd:double }?,
1150
+ attribute GradientStrokeAngle { xsd:double }?,
1151
+ attribute OverprintStroke { xsd:boolean }?,
1152
+ attribute GapColor { xsd:string }?,
1153
+ attribute GapTint { xsd:double }?,
1154
+ attribute OverprintGap { xsd:boolean }?,
1155
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1156
+ attribute ItemLayer { xsd:string }?,
1157
+ attribute Locked { xsd:boolean }?,
1158
+ attribute GradientFillHiliteLength { xsd:double }?,
1159
+ attribute GradientFillHiliteAngle { xsd:double }?,
1160
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1161
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1162
+ attribute CornerOption { CornerOptions_EnumValue }?,
1163
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1164
+ attribute LeftArrowHeadScale { xsd:double }?,
1165
+ attribute RightArrowHeadScale { xsd:double }?,
1166
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1167
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1168
+ attribute LinkResourceId { xsd:int }?,
1169
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1170
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1171
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1172
+ attribute LinkedSourceTableId { xsd:int }?,
1173
+ element Properties {
1174
+ element Profile {
1175
+ (enum_type, Profile_EnumValue ) |
1176
+ (string_type, xsd:string )
1177
+ }?&
1178
+ element Contents { text }?&
1179
+ element GraphicProxy { text }?&
1180
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1181
+ }?&
1182
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
1183
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1184
+ }?
1185
+ }
1186
+ ?
1187
+ ,
1188
+ (
1189
+ ClippingPathSettings_Object?&
1190
+ ImageIOPreference_Object?&
1191
+ GraphicLayerOption_Object?&
1192
+ LayerCompOption_Object?&
1193
+ AnimationSetting_Object?&
1194
+ TimingSetting_Object?&
1195
+ TextWrapPreference_Object?&
1196
+ LinkedPageItemOption_Object?&
1197
+ Link_Object*&
1198
+ MetadataPacketPreference_Object?&
1199
+ TransparencySetting_Object?&
1200
+ SVG_Object*&
1201
+ Graphic_Object*
1202
+ )
1203
+ }
1204
+
1205
+ ClippingPathSettings_Object = element ClippingPathSettings {
1206
+ attribute ClippingType { ClippingPathType_EnumValue }?,
1207
+ attribute InvertPath { xsd:boolean }?,
1208
+ attribute IncludeInsideEdges { xsd:boolean }?,
1209
+ attribute RestrictToFrame { xsd:boolean }?,
1210
+ attribute UseHighResolutionImage { xsd:boolean }?,
1211
+ attribute Threshold { xsd:int {minInclusive="0" maxInclusive="255"} }?,
1212
+ attribute Tolerance { xsd:double {minInclusive="0" maxInclusive="10"} }?,
1213
+ attribute InsetFrame { xsd:double }?,
1214
+ attribute AppliedPathName { xsd:string }?,
1215
+ attribute Index { xsd:int }?
1216
+ }
1217
+
1218
+ ImageIOPreference_Object = element ImageIOPreference {
1219
+ attribute ApplyPhotoshopClippingPath { xsd:boolean }?,
1220
+ attribute AllowAutoEmbedding { xsd:boolean }?,
1221
+ attribute AlphaChannelName { xsd:string }?
1222
+ }
1223
+
1224
+ GraphicLayerOption_Object = element GraphicLayerOption {
1225
+ attribute UpdateLinkOption { UpdateLinkOptions_EnumValue }?,
1226
+ (
1227
+ GraphicLayer_Object*
1228
+ )
1229
+ }
1230
+
1231
+ GraphicLayer_Object = element GraphicLayer {
1232
+ attribute Self { xsd:string },
1233
+ attribute Name { xsd:string }?,
1234
+ attribute OriginalVisibility { xsd:boolean }?,
1235
+ attribute CurrentVisibility { xsd:boolean }?,
1236
+ attribute SeparatorLayer { xsd:boolean }?,
1237
+ attribute AdjustmentLayer { xsd:boolean }?,
1238
+ attribute FXLayer { xsd:boolean }?,
1239
+ attribute Locked { xsd:boolean }?,
1240
+ attribute HasViewState { xsd:boolean }?,
1241
+ attribute ViewState { xsd:boolean }?,
1242
+ attribute HasExportState { xsd:boolean }?,
1243
+ attribute ExportState { xsd:boolean }?,
1244
+ attribute HasPrintState { xsd:boolean }?,
1245
+ attribute PrintState { xsd:boolean }?,
1246
+ attribute Id { xsd:int }?,
1247
+ (
1248
+ GraphicLayer_Object*
1249
+ )
1250
+ }
1251
+
1252
+ LayerCompOption_Object = element LayerCompOption {
1253
+ attribute AppliedLayerComp { xsd:int }?
1254
+ }
1255
+
1256
+ EPS_Object = element EPS {
1257
+ attribute Self { xsd:string },
1258
+ attribute Nonprinting { xsd:boolean }?,
1259
+ attribute Space { xsd:string }?,
1260
+ attribute ActualPpi { list { xsd:double ,xsd:double } }?,
1261
+ attribute EffectivePpi { list { xsd:double ,xsd:double } }?,
1262
+ attribute GrayVectorPolicy { PlacedVectorProfilePolicy_EnumValue }?,
1263
+ attribute RGBVectorPolicy { PlacedVectorProfilePolicy_EnumValue }?,
1264
+ attribute CMYKVectorPolicy { PlacedVectorProfilePolicy_EnumValue }?,
1265
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1266
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1267
+ attribute ImageTypeName { xsd:string }?,
1268
+ attribute AppliedObjectStyle { xsd:string }?,
1269
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1270
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1271
+ (FlexEnum_EnumValue )
1272
+ }?,
1273
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1274
+ (FlexEnum_EnumValue )
1275
+ }?,
1276
+ attribute Visible { xsd:boolean }?,
1277
+ attribute Name { xsd:string }?,
1278
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1279
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1280
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1281
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1282
+ attribute TopLeftCornerRadius { xsd:double }?,
1283
+ attribute TopRightCornerRadius { xsd:double }?,
1284
+ attribute BottomLeftCornerRadius { xsd:double }?,
1285
+ attribute BottomRightCornerRadius { xsd:double }?,
1286
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1287
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1288
+ attribute FillColor { xsd:string }?,
1289
+ attribute FillTint { xsd:double }?,
1290
+ attribute OverprintFill { xsd:boolean }?,
1291
+ attribute CornerRadius { xsd:double }?,
1292
+ attribute StrokeWeight { xsd:double }?,
1293
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
1294
+ attribute EndCap { EndCap_EnumValue }?,
1295
+ attribute EndJoin { EndJoin_EnumValue }?,
1296
+ attribute StrokeType { xsd:string }?,
1297
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
1298
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
1299
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
1300
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
1301
+ attribute StrokeColor { xsd:string }?,
1302
+ attribute StrokeTint { xsd:double }?,
1303
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
1304
+ attribute GradientFillLength { xsd:double }?,
1305
+ attribute GradientFillAngle { xsd:double }?,
1306
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
1307
+ attribute GradientStrokeLength { xsd:double }?,
1308
+ attribute GradientStrokeAngle { xsd:double }?,
1309
+ attribute OverprintStroke { xsd:boolean }?,
1310
+ attribute GapColor { xsd:string }?,
1311
+ attribute GapTint { xsd:double }?,
1312
+ attribute OverprintGap { xsd:boolean }?,
1313
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1314
+ attribute ItemLayer { xsd:string }?,
1315
+ attribute Locked { xsd:boolean }?,
1316
+ attribute GradientFillHiliteLength { xsd:double }?,
1317
+ attribute GradientFillHiliteAngle { xsd:double }?,
1318
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1319
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1320
+ attribute CornerOption { CornerOptions_EnumValue }?,
1321
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1322
+ attribute LeftArrowHeadScale { xsd:double }?,
1323
+ attribute RightArrowHeadScale { xsd:double }?,
1324
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1325
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1326
+ attribute LinkResourceId { xsd:int }?,
1327
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1328
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1329
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1330
+ attribute LinkedSourceTableId { xsd:int }?,
1331
+ element Properties {
1332
+ element Contents { text }?&
1333
+ element GraphicProxy { text }?&
1334
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1335
+ }?&
1336
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
1337
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1338
+ }?
1339
+ }
1340
+ ?
1341
+ ,
1342
+ (
1343
+ ClippingPathSettings_Object?&
1344
+ AnimationSetting_Object?&
1345
+ TimingSetting_Object?&
1346
+ TextWrapPreference_Object?&
1347
+ LinkedPageItemOption_Object?&
1348
+ Link_Object*&
1349
+ MetadataPacketPreference_Object?&
1350
+ TransparencySetting_Object?&
1351
+ SVG_Object*&
1352
+ Graphic_Object*&
1353
+ TextMessageQRCode_Object*&
1354
+ EmailQRCode_Object*&
1355
+ PlainTextQRCode_Object*&
1356
+ HyperlinkQRCode_Object*&
1357
+ VCardQRCode_Object*
1358
+ )
1359
+ }
1360
+
1361
+ WMF_Object = element WMF {
1362
+ attribute Self { xsd:string },
1363
+ attribute Nonprinting { xsd:boolean }?,
1364
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1365
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1366
+ attribute ImageTypeName { xsd:string }?,
1367
+ attribute AppliedObjectStyle { xsd:string }?,
1368
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1369
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1370
+ (FlexEnum_EnumValue )
1371
+ }?,
1372
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1373
+ (FlexEnum_EnumValue )
1374
+ }?,
1375
+ attribute Visible { xsd:boolean }?,
1376
+ attribute Name { xsd:string }?,
1377
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1378
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1379
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1380
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1381
+ attribute TopLeftCornerRadius { xsd:double }?,
1382
+ attribute TopRightCornerRadius { xsd:double }?,
1383
+ attribute BottomLeftCornerRadius { xsd:double }?,
1384
+ attribute BottomRightCornerRadius { xsd:double }?,
1385
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1386
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1387
+ attribute FillColor { xsd:string }?,
1388
+ attribute FillTint { xsd:double }?,
1389
+ attribute OverprintFill { xsd:boolean }?,
1390
+ attribute CornerRadius { xsd:double }?,
1391
+ attribute StrokeWeight { xsd:double }?,
1392
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
1393
+ attribute EndCap { EndCap_EnumValue }?,
1394
+ attribute EndJoin { EndJoin_EnumValue }?,
1395
+ attribute StrokeType { xsd:string }?,
1396
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
1397
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
1398
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
1399
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
1400
+ attribute StrokeColor { xsd:string }?,
1401
+ attribute StrokeTint { xsd:double }?,
1402
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
1403
+ attribute GradientFillLength { xsd:double }?,
1404
+ attribute GradientFillAngle { xsd:double }?,
1405
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
1406
+ attribute GradientStrokeLength { xsd:double }?,
1407
+ attribute GradientStrokeAngle { xsd:double }?,
1408
+ attribute OverprintStroke { xsd:boolean }?,
1409
+ attribute GapColor { xsd:string }?,
1410
+ attribute GapTint { xsd:double }?,
1411
+ attribute OverprintGap { xsd:boolean }?,
1412
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1413
+ attribute ItemLayer { xsd:string }?,
1414
+ attribute Locked { xsd:boolean }?,
1415
+ attribute GradientFillHiliteLength { xsd:double }?,
1416
+ attribute GradientFillHiliteAngle { xsd:double }?,
1417
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1418
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1419
+ attribute CornerOption { CornerOptions_EnumValue }?,
1420
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1421
+ attribute LeftArrowHeadScale { xsd:double }?,
1422
+ attribute RightArrowHeadScale { xsd:double }?,
1423
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1424
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1425
+ attribute LinkResourceId { xsd:int }?,
1426
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1427
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1428
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1429
+ attribute LinkedSourceTableId { xsd:int }?,
1430
+ element Properties {
1431
+ element Contents { text }?&
1432
+ element GraphicProxy { text }?&
1433
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1434
+ }?&
1435
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
1436
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1437
+ }?
1438
+ }
1439
+ ?
1440
+ ,
1441
+ (
1442
+ ClippingPathSettings_Object?&
1443
+ AnimationSetting_Object?&
1444
+ TimingSetting_Object?&
1445
+ TextWrapPreference_Object?&
1446
+ LinkedPageItemOption_Object?&
1447
+ Link_Object*&
1448
+ MetadataPacketPreference_Object?&
1449
+ TransparencySetting_Object?&
1450
+ SVG_Object*&
1451
+ Graphic_Object*
1452
+ )
1453
+ }
1454
+
1455
+ PICT_Object = element PICT {
1456
+ attribute Self { xsd:string },
1457
+ attribute Nonprinting { xsd:boolean }?,
1458
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1459
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1460
+ attribute ImageTypeName { xsd:string }?,
1461
+ attribute AppliedObjectStyle { xsd:string }?,
1462
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1463
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1464
+ (FlexEnum_EnumValue )
1465
+ }?,
1466
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1467
+ (FlexEnum_EnumValue )
1468
+ }?,
1469
+ attribute Visible { xsd:boolean }?,
1470
+ attribute Name { xsd:string }?,
1471
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1472
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1473
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1474
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1475
+ attribute TopLeftCornerRadius { xsd:double }?,
1476
+ attribute TopRightCornerRadius { xsd:double }?,
1477
+ attribute BottomLeftCornerRadius { xsd:double }?,
1478
+ attribute BottomRightCornerRadius { xsd:double }?,
1479
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1480
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1481
+ attribute FillColor { xsd:string }?,
1482
+ attribute FillTint { xsd:double }?,
1483
+ attribute OverprintFill { xsd:boolean }?,
1484
+ attribute CornerRadius { xsd:double }?,
1485
+ attribute StrokeWeight { xsd:double }?,
1486
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
1487
+ attribute EndCap { EndCap_EnumValue }?,
1488
+ attribute EndJoin { EndJoin_EnumValue }?,
1489
+ attribute StrokeType { xsd:string }?,
1490
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
1491
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
1492
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
1493
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
1494
+ attribute StrokeColor { xsd:string }?,
1495
+ attribute StrokeTint { xsd:double }?,
1496
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
1497
+ attribute GradientFillLength { xsd:double }?,
1498
+ attribute GradientFillAngle { xsd:double }?,
1499
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
1500
+ attribute GradientStrokeLength { xsd:double }?,
1501
+ attribute GradientStrokeAngle { xsd:double }?,
1502
+ attribute OverprintStroke { xsd:boolean }?,
1503
+ attribute GapColor { xsd:string }?,
1504
+ attribute GapTint { xsd:double }?,
1505
+ attribute OverprintGap { xsd:boolean }?,
1506
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1507
+ attribute ItemLayer { xsd:string }?,
1508
+ attribute Locked { xsd:boolean }?,
1509
+ attribute GradientFillHiliteLength { xsd:double }?,
1510
+ attribute GradientFillHiliteAngle { xsd:double }?,
1511
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1512
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1513
+ attribute CornerOption { CornerOptions_EnumValue }?,
1514
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1515
+ attribute LeftArrowHeadScale { xsd:double }?,
1516
+ attribute RightArrowHeadScale { xsd:double }?,
1517
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1518
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1519
+ attribute LinkResourceId { xsd:int }?,
1520
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1521
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1522
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1523
+ attribute LinkedSourceTableId { xsd:int }?,
1524
+ element Properties {
1525
+ element Contents { text }?&
1526
+ element GraphicProxy { text }?&
1527
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1528
+ }?&
1529
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
1530
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1531
+ }?
1532
+ }
1533
+ ?
1534
+ ,
1535
+ (
1536
+ ClippingPathSettings_Object?&
1537
+ AnimationSetting_Object?&
1538
+ TimingSetting_Object?&
1539
+ TextWrapPreference_Object?&
1540
+ LinkedPageItemOption_Object?&
1541
+ Link_Object*&
1542
+ MetadataPacketPreference_Object?&
1543
+ TransparencySetting_Object?&
1544
+ SVG_Object*&
1545
+ Graphic_Object*
1546
+ )
1547
+ }
1548
+
1549
+ PDF_Object = element PDF {
1550
+ attribute Self { xsd:string },
1551
+ attribute Nonprinting { xsd:boolean }?,
1552
+ attribute GrayVectorPolicy { PlacedVectorProfilePolicy_EnumValue }?,
1553
+ attribute RGBVectorPolicy { PlacedVectorProfilePolicy_EnumValue }?,
1554
+ attribute CMYKVectorPolicy { PlacedVectorProfilePolicy_EnumValue }?,
1555
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1556
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1557
+ attribute ImageTypeName { xsd:string }?,
1558
+ attribute AppliedObjectStyle { xsd:string }?,
1559
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1560
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1561
+ (FlexEnum_EnumValue )
1562
+ }?,
1563
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1564
+ (FlexEnum_EnumValue )
1565
+ }?,
1566
+ attribute Visible { xsd:boolean }?,
1567
+ attribute Name { xsd:string }?,
1568
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1569
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1570
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1571
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1572
+ attribute TopLeftCornerRadius { xsd:double }?,
1573
+ attribute TopRightCornerRadius { xsd:double }?,
1574
+ attribute BottomLeftCornerRadius { xsd:double }?,
1575
+ attribute BottomRightCornerRadius { xsd:double }?,
1576
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1577
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1578
+ attribute FillColor { xsd:string }?,
1579
+ attribute FillTint { xsd:double }?,
1580
+ attribute OverprintFill { xsd:boolean }?,
1581
+ attribute CornerRadius { xsd:double }?,
1582
+ attribute StrokeWeight { xsd:double }?,
1583
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
1584
+ attribute EndCap { EndCap_EnumValue }?,
1585
+ attribute EndJoin { EndJoin_EnumValue }?,
1586
+ attribute StrokeType { xsd:string }?,
1587
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
1588
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
1589
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
1590
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
1591
+ attribute StrokeColor { xsd:string }?,
1592
+ attribute StrokeTint { xsd:double }?,
1593
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
1594
+ attribute GradientFillLength { xsd:double }?,
1595
+ attribute GradientFillAngle { xsd:double }?,
1596
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
1597
+ attribute GradientStrokeLength { xsd:double }?,
1598
+ attribute GradientStrokeAngle { xsd:double }?,
1599
+ attribute OverprintStroke { xsd:boolean }?,
1600
+ attribute GapColor { xsd:string }?,
1601
+ attribute GapTint { xsd:double }?,
1602
+ attribute OverprintGap { xsd:boolean }?,
1603
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1604
+ attribute ItemLayer { xsd:string }?,
1605
+ attribute Locked { xsd:boolean }?,
1606
+ attribute GradientFillHiliteLength { xsd:double }?,
1607
+ attribute GradientFillHiliteAngle { xsd:double }?,
1608
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1609
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1610
+ attribute CornerOption { CornerOptions_EnumValue }?,
1611
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1612
+ attribute LeftArrowHeadScale { xsd:double }?,
1613
+ attribute RightArrowHeadScale { xsd:double }?,
1614
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1615
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1616
+ attribute LinkResourceId { xsd:int }?,
1617
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1618
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1619
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1620
+ attribute LinkedSourceTableId { xsd:int }?,
1621
+ element Properties {
1622
+ element Contents { text }?&
1623
+ element GraphicProxy { text }?&
1624
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1625
+ }?&
1626
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
1627
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1628
+ }?
1629
+ }
1630
+ ?
1631
+ ,
1632
+ (
1633
+ ClippingPathSettings_Object?&
1634
+ GraphicLayerOption_Object?&
1635
+ AnimationSetting_Object?&
1636
+ TimingSetting_Object?&
1637
+ TextWrapPreference_Object?&
1638
+ LinkedPageItemOption_Object?&
1639
+ Link_Object*&
1640
+ MetadataPacketPreference_Object?&
1641
+ PDFAttribute_Object?&
1642
+ TransparencySetting_Object?&
1643
+ SVG_Object*&
1644
+ Graphic_Object*
1645
+ )
1646
+ }
1647
+
1648
+ PDFAttribute_Object = element PDFAttribute {
1649
+ attribute PageNumber { xsd:int }?,
1650
+ attribute PDFCrop { PDFCrop_EnumValue }?,
1651
+ attribute TransparentBackground { xsd:boolean }?
1652
+ }
1653
+
1654
+ AnimationBehavior_Object = element AnimationBehavior {
1655
+ attribute Self { xsd:string },
1656
+ attribute AnimatedPageItem { xsd:string }?,
1657
+ attribute Operation { AnimationPlayOperations_EnumValue }?,
1658
+ attribute AutoReverseOnRollOff { xsd:boolean }?,
1659
+ attribute Name { xsd:string }?,
1660
+ attribute EnableBehavior { xsd:boolean }?,
1661
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
1662
+ element Properties {
1663
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1664
+ }?
1665
+ }
1666
+ ?
1667
+ }
1668
+
1669
+ GotoNextStateBehavior_Object = element GotoNextStateBehavior {
1670
+ attribute Self { xsd:string },
1671
+ attribute AssociatedMultiStateObject { xsd:string }?,
1672
+ attribute LoopsToNextOrPrevious { xsd:boolean }?,
1673
+ attribute Name { xsd:string }?,
1674
+ attribute EnableBehavior { xsd:boolean }?,
1675
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
1676
+ element Properties {
1677
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1678
+ }?
1679
+ }
1680
+ ?
1681
+ }
1682
+
1683
+ GotoPreviousStateBehavior_Object = element GotoPreviousStateBehavior {
1684
+ attribute Self { xsd:string },
1685
+ attribute AssociatedMultiStateObject { xsd:string }?,
1686
+ attribute LoopsToNextOrPrevious { xsd:boolean }?,
1687
+ attribute Name { xsd:string }?,
1688
+ attribute EnableBehavior { xsd:boolean }?,
1689
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
1690
+ element Properties {
1691
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1692
+ }?
1693
+ }
1694
+ ?
1695
+ }
1696
+
1697
+ GotoStateBehavior_Object = element GotoStateBehavior {
1698
+ attribute Self { xsd:string },
1699
+ attribute AssociatedMultiStateObject { xsd:string }?,
1700
+ attribute GoBackOnRollOff { xsd:boolean }?,
1701
+ attribute Name { xsd:string }?,
1702
+ attribute EnableBehavior { xsd:boolean }?,
1703
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
1704
+ element Properties {
1705
+ element Statetype {
1706
+ (enum_type, StateTypes_EnumValue ) |
1707
+ (long_type, xsd:int )
1708
+ }?&
1709
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1710
+ }?
1711
+ }
1712
+ ?
1713
+ }
1714
+
1715
+ SubmitFormBehavior_Object = element SubmitFormBehavior {
1716
+ attribute Self { xsd:string },
1717
+ attribute URL { xsd:string }?,
1718
+ attribute Name { xsd:string }?,
1719
+ attribute EnableBehavior { xsd:boolean }?,
1720
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
1721
+ element Properties {
1722
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1723
+ }?
1724
+ }
1725
+ ?
1726
+ }
1727
+
1728
+ ClearFormBehavior_Object = element ClearFormBehavior {
1729
+ attribute Self { xsd:string },
1730
+ attribute Name { xsd:string }?,
1731
+ attribute EnableBehavior { xsd:boolean }?,
1732
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
1733
+ element Properties {
1734
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1735
+ }?
1736
+ }
1737
+ ?
1738
+ }
1739
+
1740
+ PrintFormBehavior_Object = element PrintFormBehavior {
1741
+ attribute Self { xsd:string },
1742
+ attribute Name { xsd:string }?,
1743
+ attribute EnableBehavior { xsd:boolean }?,
1744
+ attribute BehaviorEvent { BehaviorEvents_EnumValue }?,
1745
+ element Properties {
1746
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1747
+ }?
1748
+ }
1749
+ ?
1750
+ }
1751
+
1752
+ MultiStateObject_Object = element MultiStateObject {
1753
+ attribute Self { xsd:string },
1754
+ attribute InitiallyHidden { xsd:boolean }?,
1755
+ attribute Name { xsd:string }?,
1756
+ attribute Description { xsd:string }?,
1757
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1758
+ attribute AllowOverrides { xsd:boolean }?,
1759
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1760
+ (FlexEnum_EnumValue )
1761
+ }?,
1762
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1763
+ (FlexEnum_EnumValue )
1764
+ }?,
1765
+ attribute Visible { xsd:boolean }?,
1766
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1767
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1768
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1769
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1770
+ attribute TopLeftCornerRadius { xsd:double }?,
1771
+ attribute TopRightCornerRadius { xsd:double }?,
1772
+ attribute BottomLeftCornerRadius { xsd:double }?,
1773
+ attribute BottomRightCornerRadius { xsd:double }?,
1774
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1775
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1776
+ attribute FillColor { xsd:string }?,
1777
+ attribute FillTint { xsd:double }?,
1778
+ attribute OverprintFill { xsd:boolean }?,
1779
+ attribute CornerRadius { xsd:double }?,
1780
+ attribute StrokeWeight { xsd:double }?,
1781
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
1782
+ attribute EndCap { EndCap_EnumValue }?,
1783
+ attribute EndJoin { EndJoin_EnumValue }?,
1784
+ attribute StrokeType { xsd:string }?,
1785
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
1786
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
1787
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
1788
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
1789
+ attribute StrokeColor { xsd:string }?,
1790
+ attribute StrokeTint { xsd:double }?,
1791
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
1792
+ attribute GradientFillLength { xsd:double }?,
1793
+ attribute GradientFillAngle { xsd:double }?,
1794
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
1795
+ attribute GradientStrokeLength { xsd:double }?,
1796
+ attribute GradientStrokeAngle { xsd:double }?,
1797
+ attribute OverprintStroke { xsd:boolean }?,
1798
+ attribute GapColor { xsd:string }?,
1799
+ attribute GapTint { xsd:double }?,
1800
+ attribute OverprintGap { xsd:boolean }?,
1801
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1802
+ attribute Nonprinting { xsd:boolean }?,
1803
+ attribute ItemLayer { xsd:string }?,
1804
+ attribute Locked { xsd:boolean }?,
1805
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1806
+ attribute GradientFillHiliteLength { xsd:double }?,
1807
+ attribute GradientFillHiliteAngle { xsd:double }?,
1808
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1809
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1810
+ attribute AppliedObjectStyle { xsd:string }?,
1811
+ attribute CornerOption { CornerOptions_EnumValue }?,
1812
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1813
+ attribute LeftArrowHeadScale { xsd:double }?,
1814
+ attribute RightArrowHeadScale { xsd:double }?,
1815
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1816
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1817
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1818
+ attribute LinkResourceId { xsd:int }?,
1819
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1820
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1821
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1822
+ attribute LinkedSourceTableId { xsd:int }?,
1823
+ element Properties {
1824
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
1825
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1826
+ }?&
1827
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1828
+ }?
1829
+ }
1830
+ ?
1831
+ ,
1832
+ (
1833
+ State_Object*&
1834
+ Graphic_Object*&
1835
+ AnchoredObjectSetting_Object?&
1836
+ AnimationSetting_Object?&
1837
+ TimingSetting_Object?&
1838
+ TextWrapPreference_Object?&
1839
+ LinkedPageItemOption_Object?&
1840
+ Link_Object*&
1841
+ TransparencySetting_Object?&
1842
+ SVG_Object*
1843
+ )
1844
+ }
1845
+
1846
+ CheckBox_Object = element CheckBox {
1847
+ attribute Self { xsd:string },
1848
+ attribute ReadOnly { xsd:boolean }?,
1849
+ attribute Required { xsd:boolean }?,
1850
+ attribute PrintableInPdf { xsd:boolean }?,
1851
+ attribute HiddenUntilTriggered { xsd:boolean }?,
1852
+ attribute CheckedByDefault { xsd:boolean }?,
1853
+ attribute ExportValue { xsd:string }?,
1854
+ attribute Name { xsd:string }?,
1855
+ attribute Description { xsd:string }?,
1856
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
1857
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1858
+ attribute AllowOverrides { xsd:boolean }?,
1859
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1860
+ (FlexEnum_EnumValue )
1861
+ }?,
1862
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1863
+ (FlexEnum_EnumValue )
1864
+ }?,
1865
+ attribute Visible { xsd:boolean }?,
1866
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1867
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1868
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1869
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1870
+ attribute TopLeftCornerRadius { xsd:double }?,
1871
+ attribute TopRightCornerRadius { xsd:double }?,
1872
+ attribute BottomLeftCornerRadius { xsd:double }?,
1873
+ attribute BottomRightCornerRadius { xsd:double }?,
1874
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1875
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1876
+ attribute FillColor { xsd:string }?,
1877
+ attribute FillTint { xsd:double }?,
1878
+ attribute OverprintFill { xsd:boolean }?,
1879
+ attribute CornerRadius { xsd:double }?,
1880
+ attribute StrokeWeight { xsd:double }?,
1881
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
1882
+ attribute EndCap { EndCap_EnumValue }?,
1883
+ attribute EndJoin { EndJoin_EnumValue }?,
1884
+ attribute StrokeType { xsd:string }?,
1885
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
1886
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
1887
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
1888
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
1889
+ attribute StrokeColor { xsd:string }?,
1890
+ attribute StrokeTint { xsd:double }?,
1891
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
1892
+ attribute GradientFillLength { xsd:double }?,
1893
+ attribute GradientFillAngle { xsd:double }?,
1894
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
1895
+ attribute GradientStrokeLength { xsd:double }?,
1896
+ attribute GradientStrokeAngle { xsd:double }?,
1897
+ attribute OverprintStroke { xsd:boolean }?,
1898
+ attribute GapColor { xsd:string }?,
1899
+ attribute GapTint { xsd:double }?,
1900
+ attribute OverprintGap { xsd:boolean }?,
1901
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
1902
+ attribute Nonprinting { xsd:boolean }?,
1903
+ attribute ItemLayer { xsd:string }?,
1904
+ attribute Locked { xsd:boolean }?,
1905
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
1906
+ attribute GradientFillHiliteLength { xsd:double }?,
1907
+ attribute GradientFillHiliteAngle { xsd:double }?,
1908
+ attribute GradientStrokeHiliteLength { xsd:double }?,
1909
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
1910
+ attribute AppliedObjectStyle { xsd:string }?,
1911
+ attribute CornerOption { CornerOptions_EnumValue }?,
1912
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
1913
+ attribute LeftArrowHeadScale { xsd:double }?,
1914
+ attribute RightArrowHeadScale { xsd:double }?,
1915
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
1916
+ attribute BeforeGroupingLayerReference { xsd:string }?,
1917
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
1918
+ attribute LinkResourceId { xsd:int }?,
1919
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
1920
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
1921
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
1922
+ attribute LinkedSourceTableId { xsd:int }?,
1923
+ element Properties {
1924
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
1925
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
1926
+ }?&
1927
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
1928
+ }?
1929
+ }
1930
+ ?
1931
+ ,
1932
+ (
1933
+ State_Object*&
1934
+ Graphic_Object*&
1935
+ AnchoredObjectSetting_Object?&
1936
+ AnimationSetting_Object?&
1937
+ TimingSetting_Object?&
1938
+ TextWrapPreference_Object?&
1939
+ LinkedPageItemOption_Object?&
1940
+ Link_Object*&
1941
+ SubmitFormBehavior_Object*&
1942
+ Behavior_Object*&
1943
+ ClearFormBehavior_Object*&
1944
+ PrintFormBehavior_Object*&
1945
+ ViewZoomBehavior_Object*&
1946
+ SoundBehavior_Object*&
1947
+ ShowHideFieldsBehavior_Object*&
1948
+ MovieBehavior_Object*&
1949
+ GotoAnchorBehavior_Object*&
1950
+ GotoFirstPageBehavior_Object*&
1951
+ GotoLastPageBehavior_Object*&
1952
+ GotoNextPageBehavior_Object*&
1953
+ GotoPreviousPageBehavior_Object*&
1954
+ GotoNextViewBehavior_Object*&
1955
+ GotoPreviousViewBehavior_Object*&
1956
+ GotoURLBehavior_Object*&
1957
+ OpenFileBehavior_Object*&
1958
+ TransparencySetting_Object?&
1959
+ SVG_Object*
1960
+ )
1961
+ }
1962
+
1963
+ ComboBox_Object = element ComboBox {
1964
+ attribute Self { xsd:string },
1965
+ attribute FontStyle { xsd:string }?,
1966
+ attribute AppliedFont { xsd:string }?,
1967
+ attribute ReadOnly { xsd:boolean }?,
1968
+ attribute Required { xsd:boolean }?,
1969
+ attribute PrintableInPdf { xsd:boolean }?,
1970
+ attribute HiddenUntilTriggered { xsd:boolean }?,
1971
+ attribute FontSize { xsd:double }?,
1972
+ attribute SortChoices { xsd:boolean }?,
1973
+ attribute ChoiceList { list { xsd:string * } }?,
1974
+ attribute RightToLeftField { xsd:boolean }?,
1975
+ attribute Name { xsd:string }?,
1976
+ attribute Description { xsd:string }?,
1977
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
1978
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
1979
+ attribute AllowOverrides { xsd:boolean }?,
1980
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
1981
+ (FlexEnum_EnumValue )
1982
+ }?,
1983
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
1984
+ (FlexEnum_EnumValue )
1985
+ }?,
1986
+ attribute Visible { xsd:boolean }?,
1987
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
1988
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
1989
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
1990
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
1991
+ attribute TopLeftCornerRadius { xsd:double }?,
1992
+ attribute TopRightCornerRadius { xsd:double }?,
1993
+ attribute BottomLeftCornerRadius { xsd:double }?,
1994
+ attribute BottomRightCornerRadius { xsd:double }?,
1995
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1996
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
1997
+ attribute FillColor { xsd:string }?,
1998
+ attribute FillTint { xsd:double }?,
1999
+ attribute OverprintFill { xsd:boolean }?,
2000
+ attribute CornerRadius { xsd:double }?,
2001
+ attribute StrokeWeight { xsd:double }?,
2002
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2003
+ attribute EndCap { EndCap_EnumValue }?,
2004
+ attribute EndJoin { EndJoin_EnumValue }?,
2005
+ attribute StrokeType { xsd:string }?,
2006
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2007
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2008
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2009
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2010
+ attribute StrokeColor { xsd:string }?,
2011
+ attribute StrokeTint { xsd:double }?,
2012
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
2013
+ attribute GradientFillLength { xsd:double }?,
2014
+ attribute GradientFillAngle { xsd:double }?,
2015
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
2016
+ attribute GradientStrokeLength { xsd:double }?,
2017
+ attribute GradientStrokeAngle { xsd:double }?,
2018
+ attribute OverprintStroke { xsd:boolean }?,
2019
+ attribute GapColor { xsd:string }?,
2020
+ attribute GapTint { xsd:double }?,
2021
+ attribute OverprintGap { xsd:boolean }?,
2022
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
2023
+ attribute Nonprinting { xsd:boolean }?,
2024
+ attribute ItemLayer { xsd:string }?,
2025
+ attribute Locked { xsd:boolean }?,
2026
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2027
+ attribute GradientFillHiliteLength { xsd:double }?,
2028
+ attribute GradientFillHiliteAngle { xsd:double }?,
2029
+ attribute GradientStrokeHiliteLength { xsd:double }?,
2030
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
2031
+ attribute AppliedObjectStyle { xsd:string }?,
2032
+ attribute CornerOption { CornerOptions_EnumValue }?,
2033
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
2034
+ attribute LeftArrowHeadScale { xsd:double }?,
2035
+ attribute RightArrowHeadScale { xsd:double }?,
2036
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2037
+ attribute BeforeGroupingLayerReference { xsd:string }?,
2038
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
2039
+ attribute LinkResourceId { xsd:int }?,
2040
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
2041
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
2042
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
2043
+ attribute LinkedSourceTableId { xsd:int }?,
2044
+ element Properties {
2045
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
2046
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
2047
+ }?&
2048
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
2049
+ }?
2050
+ }
2051
+ ?
2052
+ ,
2053
+ (
2054
+ Image_Object*&
2055
+ Graphic_Object*&
2056
+ EPS_Object*&
2057
+ WMF_Object*&
2058
+ PICT_Object*&
2059
+ PDF_Object*&
2060
+ Group_Object*&
2061
+ EPSText_Object*&
2062
+ AnchoredObjectSetting_Object?&
2063
+ AnimationSetting_Object?&
2064
+ TimingSetting_Object?&
2065
+ TextWrapPreference_Object?&
2066
+ LinkedPageItemOption_Object?&
2067
+ Oval_Object*&
2068
+ Rectangle_Object*&
2069
+ GraphicLine_Object*&
2070
+ TextFrame_Object*&
2071
+ Polygon_Object*&
2072
+ Link_Object*&
2073
+ SubmitFormBehavior_Object*&
2074
+ Behavior_Object*&
2075
+ ClearFormBehavior_Object*&
2076
+ PrintFormBehavior_Object*&
2077
+ ViewZoomBehavior_Object*&
2078
+ SoundBehavior_Object*&
2079
+ ShowHideFieldsBehavior_Object*&
2080
+ MovieBehavior_Object*&
2081
+ GotoAnchorBehavior_Object*&
2082
+ GotoFirstPageBehavior_Object*&
2083
+ GotoLastPageBehavior_Object*&
2084
+ GotoNextPageBehavior_Object*&
2085
+ GotoPreviousPageBehavior_Object*&
2086
+ GotoNextViewBehavior_Object*&
2087
+ GotoPreviousViewBehavior_Object*&
2088
+ GotoURLBehavior_Object*&
2089
+ OpenFileBehavior_Object*&
2090
+ TransparencySetting_Object?&
2091
+ SVG_Object*
2092
+ )
2093
+ }
2094
+
2095
+ ListBox_Object = element ListBox {
2096
+ attribute Self { xsd:string },
2097
+ attribute FontStyle { xsd:string }?,
2098
+ attribute AppliedFont { xsd:string }?,
2099
+ attribute ReadOnly { xsd:boolean }?,
2100
+ attribute Required { xsd:boolean }?,
2101
+ attribute PrintableInPdf { xsd:boolean }?,
2102
+ attribute HiddenUntilTriggered { xsd:boolean }?,
2103
+ attribute FontSize { xsd:double }?,
2104
+ attribute SortChoices { xsd:boolean }?,
2105
+ attribute ChoiceList { list { xsd:string * } }?,
2106
+ attribute RightToLeftField { xsd:boolean }?,
2107
+ attribute MultipleSelection { xsd:boolean }?,
2108
+ attribute Name { xsd:string }?,
2109
+ attribute Description { xsd:string }?,
2110
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
2111
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
2112
+ attribute AllowOverrides { xsd:boolean }?,
2113
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
2114
+ (FlexEnum_EnumValue )
2115
+ }?,
2116
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
2117
+ (FlexEnum_EnumValue )
2118
+ }?,
2119
+ attribute Visible { xsd:boolean }?,
2120
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
2121
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
2122
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
2123
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
2124
+ attribute TopLeftCornerRadius { xsd:double }?,
2125
+ attribute TopRightCornerRadius { xsd:double }?,
2126
+ attribute BottomLeftCornerRadius { xsd:double }?,
2127
+ attribute BottomRightCornerRadius { xsd:double }?,
2128
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2129
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2130
+ attribute FillColor { xsd:string }?,
2131
+ attribute FillTint { xsd:double }?,
2132
+ attribute OverprintFill { xsd:boolean }?,
2133
+ attribute CornerRadius { xsd:double }?,
2134
+ attribute StrokeWeight { xsd:double }?,
2135
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2136
+ attribute EndCap { EndCap_EnumValue }?,
2137
+ attribute EndJoin { EndJoin_EnumValue }?,
2138
+ attribute StrokeType { xsd:string }?,
2139
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2140
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2141
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2142
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2143
+ attribute StrokeColor { xsd:string }?,
2144
+ attribute StrokeTint { xsd:double }?,
2145
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
2146
+ attribute GradientFillLength { xsd:double }?,
2147
+ attribute GradientFillAngle { xsd:double }?,
2148
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
2149
+ attribute GradientStrokeLength { xsd:double }?,
2150
+ attribute GradientStrokeAngle { xsd:double }?,
2151
+ attribute OverprintStroke { xsd:boolean }?,
2152
+ attribute GapColor { xsd:string }?,
2153
+ attribute GapTint { xsd:double }?,
2154
+ attribute OverprintGap { xsd:boolean }?,
2155
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
2156
+ attribute Nonprinting { xsd:boolean }?,
2157
+ attribute ItemLayer { xsd:string }?,
2158
+ attribute Locked { xsd:boolean }?,
2159
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2160
+ attribute GradientFillHiliteLength { xsd:double }?,
2161
+ attribute GradientFillHiliteAngle { xsd:double }?,
2162
+ attribute GradientStrokeHiliteLength { xsd:double }?,
2163
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
2164
+ attribute AppliedObjectStyle { xsd:string }?,
2165
+ attribute CornerOption { CornerOptions_EnumValue }?,
2166
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
2167
+ attribute LeftArrowHeadScale { xsd:double }?,
2168
+ attribute RightArrowHeadScale { xsd:double }?,
2169
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2170
+ attribute BeforeGroupingLayerReference { xsd:string }?,
2171
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
2172
+ attribute LinkResourceId { xsd:int }?,
2173
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
2174
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
2175
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
2176
+ attribute LinkedSourceTableId { xsd:int }?,
2177
+ element Properties {
2178
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
2179
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
2180
+ }?&
2181
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
2182
+ }?
2183
+ }
2184
+ ?
2185
+ ,
2186
+ (
2187
+ Image_Object*&
2188
+ Graphic_Object*&
2189
+ EPS_Object*&
2190
+ WMF_Object*&
2191
+ PICT_Object*&
2192
+ PDF_Object*&
2193
+ Group_Object*&
2194
+ EPSText_Object*&
2195
+ AnchoredObjectSetting_Object?&
2196
+ AnimationSetting_Object?&
2197
+ TimingSetting_Object?&
2198
+ TextWrapPreference_Object?&
2199
+ LinkedPageItemOption_Object?&
2200
+ Oval_Object*&
2201
+ Rectangle_Object*&
2202
+ GraphicLine_Object*&
2203
+ TextFrame_Object*&
2204
+ Polygon_Object*&
2205
+ Link_Object*&
2206
+ SubmitFormBehavior_Object*&
2207
+ Behavior_Object*&
2208
+ ClearFormBehavior_Object*&
2209
+ PrintFormBehavior_Object*&
2210
+ ViewZoomBehavior_Object*&
2211
+ SoundBehavior_Object*&
2212
+ ShowHideFieldsBehavior_Object*&
2213
+ MovieBehavior_Object*&
2214
+ GotoAnchorBehavior_Object*&
2215
+ GotoFirstPageBehavior_Object*&
2216
+ GotoLastPageBehavior_Object*&
2217
+ GotoNextPageBehavior_Object*&
2218
+ GotoPreviousPageBehavior_Object*&
2219
+ GotoNextViewBehavior_Object*&
2220
+ GotoPreviousViewBehavior_Object*&
2221
+ GotoURLBehavior_Object*&
2222
+ OpenFileBehavior_Object*&
2223
+ TransparencySetting_Object?&
2224
+ SVG_Object*
2225
+ )
2226
+ }
2227
+
2228
+ RadioButton_Object = element RadioButton {
2229
+ attribute Self { xsd:string },
2230
+ attribute ReadOnly { xsd:boolean }?,
2231
+ attribute Required { xsd:boolean }?,
2232
+ attribute PrintableInPdf { xsd:boolean }?,
2233
+ attribute HiddenUntilTriggered { xsd:boolean }?,
2234
+ attribute CheckedByDefault { xsd:boolean }?,
2235
+ attribute ExportValue { xsd:string }?,
2236
+ attribute Name { xsd:string }?,
2237
+ attribute Description { xsd:string }?,
2238
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
2239
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
2240
+ attribute AllowOverrides { xsd:boolean }?,
2241
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
2242
+ (FlexEnum_EnumValue )
2243
+ }?,
2244
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
2245
+ (FlexEnum_EnumValue )
2246
+ }?,
2247
+ attribute Visible { xsd:boolean }?,
2248
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
2249
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
2250
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
2251
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
2252
+ attribute TopLeftCornerRadius { xsd:double }?,
2253
+ attribute TopRightCornerRadius { xsd:double }?,
2254
+ attribute BottomLeftCornerRadius { xsd:double }?,
2255
+ attribute BottomRightCornerRadius { xsd:double }?,
2256
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2257
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2258
+ attribute FillColor { xsd:string }?,
2259
+ attribute FillTint { xsd:double }?,
2260
+ attribute OverprintFill { xsd:boolean }?,
2261
+ attribute CornerRadius { xsd:double }?,
2262
+ attribute StrokeWeight { xsd:double }?,
2263
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2264
+ attribute EndCap { EndCap_EnumValue }?,
2265
+ attribute EndJoin { EndJoin_EnumValue }?,
2266
+ attribute StrokeType { xsd:string }?,
2267
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2268
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2269
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2270
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2271
+ attribute StrokeColor { xsd:string }?,
2272
+ attribute StrokeTint { xsd:double }?,
2273
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
2274
+ attribute GradientFillLength { xsd:double }?,
2275
+ attribute GradientFillAngle { xsd:double }?,
2276
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
2277
+ attribute GradientStrokeLength { xsd:double }?,
2278
+ attribute GradientStrokeAngle { xsd:double }?,
2279
+ attribute OverprintStroke { xsd:boolean }?,
2280
+ attribute GapColor { xsd:string }?,
2281
+ attribute GapTint { xsd:double }?,
2282
+ attribute OverprintGap { xsd:boolean }?,
2283
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
2284
+ attribute Nonprinting { xsd:boolean }?,
2285
+ attribute ItemLayer { xsd:string }?,
2286
+ attribute Locked { xsd:boolean }?,
2287
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2288
+ attribute GradientFillHiliteLength { xsd:double }?,
2289
+ attribute GradientFillHiliteAngle { xsd:double }?,
2290
+ attribute GradientStrokeHiliteLength { xsd:double }?,
2291
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
2292
+ attribute AppliedObjectStyle { xsd:string }?,
2293
+ attribute CornerOption { CornerOptions_EnumValue }?,
2294
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
2295
+ attribute LeftArrowHeadScale { xsd:double }?,
2296
+ attribute RightArrowHeadScale { xsd:double }?,
2297
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2298
+ attribute BeforeGroupingLayerReference { xsd:string }?,
2299
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
2300
+ attribute LinkResourceId { xsd:int }?,
2301
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
2302
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
2303
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
2304
+ attribute LinkedSourceTableId { xsd:int }?,
2305
+ element Properties {
2306
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
2307
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
2308
+ }?&
2309
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
2310
+ }?
2311
+ }
2312
+ ?
2313
+ ,
2314
+ (
2315
+ State_Object*&
2316
+ Graphic_Object*&
2317
+ AnchoredObjectSetting_Object?&
2318
+ AnimationSetting_Object?&
2319
+ TimingSetting_Object?&
2320
+ TextWrapPreference_Object?&
2321
+ LinkedPageItemOption_Object?&
2322
+ Link_Object*&
2323
+ SubmitFormBehavior_Object*&
2324
+ Behavior_Object*&
2325
+ ClearFormBehavior_Object*&
2326
+ PrintFormBehavior_Object*&
2327
+ ViewZoomBehavior_Object*&
2328
+ SoundBehavior_Object*&
2329
+ ShowHideFieldsBehavior_Object*&
2330
+ MovieBehavior_Object*&
2331
+ GotoAnchorBehavior_Object*&
2332
+ GotoFirstPageBehavior_Object*&
2333
+ GotoLastPageBehavior_Object*&
2334
+ GotoNextPageBehavior_Object*&
2335
+ GotoPreviousPageBehavior_Object*&
2336
+ GotoNextViewBehavior_Object*&
2337
+ GotoPreviousViewBehavior_Object*&
2338
+ GotoURLBehavior_Object*&
2339
+ OpenFileBehavior_Object*&
2340
+ TransparencySetting_Object?&
2341
+ SVG_Object*
2342
+ )
2343
+ }
2344
+
2345
+ TextBox_Object = element TextBox {
2346
+ attribute Self { xsd:string },
2347
+ attribute FontStyle { xsd:string }?,
2348
+ attribute AppliedFont { xsd:string }?,
2349
+ attribute ReadOnly { xsd:boolean }?,
2350
+ attribute Required { xsd:boolean }?,
2351
+ attribute PrintableInPdf { xsd:boolean }?,
2352
+ attribute HiddenUntilTriggered { xsd:boolean }?,
2353
+ attribute Multiline { xsd:boolean }?,
2354
+ attribute Password { xsd:boolean }?,
2355
+ attribute Scrollable { xsd:boolean }?,
2356
+ attribute FontSize { xsd:double }?,
2357
+ attribute RightToLeftField { xsd:boolean }?,
2358
+ attribute Name { xsd:string }?,
2359
+ attribute Description { xsd:string }?,
2360
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
2361
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
2362
+ attribute AllowOverrides { xsd:boolean }?,
2363
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
2364
+ (FlexEnum_EnumValue )
2365
+ }?,
2366
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
2367
+ (FlexEnum_EnumValue )
2368
+ }?,
2369
+ attribute Visible { xsd:boolean }?,
2370
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
2371
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
2372
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
2373
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
2374
+ attribute TopLeftCornerRadius { xsd:double }?,
2375
+ attribute TopRightCornerRadius { xsd:double }?,
2376
+ attribute BottomLeftCornerRadius { xsd:double }?,
2377
+ attribute BottomRightCornerRadius { xsd:double }?,
2378
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2379
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2380
+ attribute FillColor { xsd:string }?,
2381
+ attribute FillTint { xsd:double }?,
2382
+ attribute OverprintFill { xsd:boolean }?,
2383
+ attribute CornerRadius { xsd:double }?,
2384
+ attribute StrokeWeight { xsd:double }?,
2385
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2386
+ attribute EndCap { EndCap_EnumValue }?,
2387
+ attribute EndJoin { EndJoin_EnumValue }?,
2388
+ attribute StrokeType { xsd:string }?,
2389
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2390
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2391
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2392
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2393
+ attribute StrokeColor { xsd:string }?,
2394
+ attribute StrokeTint { xsd:double }?,
2395
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
2396
+ attribute GradientFillLength { xsd:double }?,
2397
+ attribute GradientFillAngle { xsd:double }?,
2398
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
2399
+ attribute GradientStrokeLength { xsd:double }?,
2400
+ attribute GradientStrokeAngle { xsd:double }?,
2401
+ attribute OverprintStroke { xsd:boolean }?,
2402
+ attribute GapColor { xsd:string }?,
2403
+ attribute GapTint { xsd:double }?,
2404
+ attribute OverprintGap { xsd:boolean }?,
2405
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
2406
+ attribute Nonprinting { xsd:boolean }?,
2407
+ attribute ItemLayer { xsd:string }?,
2408
+ attribute Locked { xsd:boolean }?,
2409
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2410
+ attribute GradientFillHiliteLength { xsd:double }?,
2411
+ attribute GradientFillHiliteAngle { xsd:double }?,
2412
+ attribute GradientStrokeHiliteLength { xsd:double }?,
2413
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
2414
+ attribute AppliedObjectStyle { xsd:string }?,
2415
+ attribute CornerOption { CornerOptions_EnumValue }?,
2416
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
2417
+ attribute LeftArrowHeadScale { xsd:double }?,
2418
+ attribute RightArrowHeadScale { xsd:double }?,
2419
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2420
+ attribute BeforeGroupingLayerReference { xsd:string }?,
2421
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
2422
+ attribute LinkResourceId { xsd:int }?,
2423
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
2424
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
2425
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
2426
+ attribute LinkedSourceTableId { xsd:int }?,
2427
+ element Properties {
2428
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
2429
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
2430
+ }?&
2431
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
2432
+ }?
2433
+ }
2434
+ ?
2435
+ ,
2436
+ (
2437
+ Image_Object*&
2438
+ Graphic_Object*&
2439
+ EPS_Object*&
2440
+ WMF_Object*&
2441
+ PICT_Object*&
2442
+ PDF_Object*&
2443
+ Group_Object*&
2444
+ EPSText_Object*&
2445
+ AnchoredObjectSetting_Object?&
2446
+ AnimationSetting_Object?&
2447
+ TimingSetting_Object?&
2448
+ TextWrapPreference_Object?&
2449
+ LinkedPageItemOption_Object?&
2450
+ Oval_Object*&
2451
+ Rectangle_Object*&
2452
+ GraphicLine_Object*&
2453
+ TextFrame_Object*&
2454
+ Polygon_Object*&
2455
+ Link_Object*&
2456
+ SubmitFormBehavior_Object*&
2457
+ Behavior_Object*&
2458
+ ClearFormBehavior_Object*&
2459
+ PrintFormBehavior_Object*&
2460
+ ViewZoomBehavior_Object*&
2461
+ SoundBehavior_Object*&
2462
+ ShowHideFieldsBehavior_Object*&
2463
+ MovieBehavior_Object*&
2464
+ GotoAnchorBehavior_Object*&
2465
+ GotoFirstPageBehavior_Object*&
2466
+ GotoLastPageBehavior_Object*&
2467
+ GotoNextPageBehavior_Object*&
2468
+ GotoPreviousPageBehavior_Object*&
2469
+ GotoNextViewBehavior_Object*&
2470
+ GotoPreviousViewBehavior_Object*&
2471
+ GotoURLBehavior_Object*&
2472
+ OpenFileBehavior_Object*&
2473
+ TransparencySetting_Object?&
2474
+ SVG_Object*
2475
+ )
2476
+ }
2477
+
2478
+ SignatureField_Object = element SignatureField {
2479
+ attribute Self { xsd:string },
2480
+ attribute ReadOnly { xsd:boolean }?,
2481
+ attribute Required { xsd:boolean }?,
2482
+ attribute PrintableInPdf { xsd:boolean }?,
2483
+ attribute HiddenUntilTriggered { xsd:boolean }?,
2484
+ attribute Name { xsd:string }?,
2485
+ attribute Description { xsd:string }?,
2486
+ attribute VisibilityInPdf { VisibilityInPdf_EnumValue }?,
2487
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
2488
+ attribute AllowOverrides { xsd:boolean }?,
2489
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
2490
+ (FlexEnum_EnumValue )
2491
+ }?,
2492
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
2493
+ (FlexEnum_EnumValue )
2494
+ }?,
2495
+ attribute Visible { xsd:boolean }?,
2496
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
2497
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
2498
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
2499
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
2500
+ attribute TopLeftCornerRadius { xsd:double }?,
2501
+ attribute TopRightCornerRadius { xsd:double }?,
2502
+ attribute BottomLeftCornerRadius { xsd:double }?,
2503
+ attribute BottomRightCornerRadius { xsd:double }?,
2504
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2505
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2506
+ attribute FillColor { xsd:string }?,
2507
+ attribute FillTint { xsd:double }?,
2508
+ attribute OverprintFill { xsd:boolean }?,
2509
+ attribute CornerRadius { xsd:double }?,
2510
+ attribute StrokeWeight { xsd:double }?,
2511
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2512
+ attribute EndCap { EndCap_EnumValue }?,
2513
+ attribute EndJoin { EndJoin_EnumValue }?,
2514
+ attribute StrokeType { xsd:string }?,
2515
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2516
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2517
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2518
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2519
+ attribute StrokeColor { xsd:string }?,
2520
+ attribute StrokeTint { xsd:double }?,
2521
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
2522
+ attribute GradientFillLength { xsd:double }?,
2523
+ attribute GradientFillAngle { xsd:double }?,
2524
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
2525
+ attribute GradientStrokeLength { xsd:double }?,
2526
+ attribute GradientStrokeAngle { xsd:double }?,
2527
+ attribute OverprintStroke { xsd:boolean }?,
2528
+ attribute GapColor { xsd:string }?,
2529
+ attribute GapTint { xsd:double }?,
2530
+ attribute OverprintGap { xsd:boolean }?,
2531
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
2532
+ attribute Nonprinting { xsd:boolean }?,
2533
+ attribute ItemLayer { xsd:string }?,
2534
+ attribute Locked { xsd:boolean }?,
2535
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2536
+ attribute GradientFillHiliteLength { xsd:double }?,
2537
+ attribute GradientFillHiliteAngle { xsd:double }?,
2538
+ attribute GradientStrokeHiliteLength { xsd:double }?,
2539
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
2540
+ attribute AppliedObjectStyle { xsd:string }?,
2541
+ attribute CornerOption { CornerOptions_EnumValue }?,
2542
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
2543
+ attribute LeftArrowHeadScale { xsd:double }?,
2544
+ attribute RightArrowHeadScale { xsd:double }?,
2545
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2546
+ attribute BeforeGroupingLayerReference { xsd:string }?,
2547
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
2548
+ attribute LinkResourceId { xsd:int }?,
2549
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
2550
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
2551
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
2552
+ attribute LinkedSourceTableId { xsd:int }?,
2553
+ element Properties {
2554
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
2555
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
2556
+ }?&
2557
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
2558
+ }?
2559
+ }
2560
+ ?
2561
+ ,
2562
+ (
2563
+ Image_Object*&
2564
+ Graphic_Object*&
2565
+ EPS_Object*&
2566
+ WMF_Object*&
2567
+ PICT_Object*&
2568
+ PDF_Object*&
2569
+ Group_Object*&
2570
+ EPSText_Object*&
2571
+ AnchoredObjectSetting_Object?&
2572
+ AnimationSetting_Object?&
2573
+ TimingSetting_Object?&
2574
+ TextWrapPreference_Object?&
2575
+ LinkedPageItemOption_Object?&
2576
+ Oval_Object*&
2577
+ Rectangle_Object*&
2578
+ GraphicLine_Object*&
2579
+ TextFrame_Object*&
2580
+ Polygon_Object*&
2581
+ Link_Object*&
2582
+ SubmitFormBehavior_Object*&
2583
+ Behavior_Object*&
2584
+ ClearFormBehavior_Object*&
2585
+ PrintFormBehavior_Object*&
2586
+ ViewZoomBehavior_Object*&
2587
+ SoundBehavior_Object*&
2588
+ ShowHideFieldsBehavior_Object*&
2589
+ MovieBehavior_Object*&
2590
+ GotoAnchorBehavior_Object*&
2591
+ GotoFirstPageBehavior_Object*&
2592
+ GotoLastPageBehavior_Object*&
2593
+ GotoNextPageBehavior_Object*&
2594
+ GotoPreviousPageBehavior_Object*&
2595
+ GotoNextViewBehavior_Object*&
2596
+ GotoPreviousViewBehavior_Object*&
2597
+ GotoURLBehavior_Object*&
2598
+ OpenFileBehavior_Object*&
2599
+ TransparencySetting_Object?&
2600
+ SVG_Object*
2601
+ )
2602
+ }
2603
+
2604
+ FlexObject_Object = element FlexObject {
2605
+ attribute Self { xsd:string },
2606
+ attribute FlexWidthMode { (FlexWidthHeightMode_EnumValue ) |
2607
+ (FlexEnum_EnumValue )
2608
+ }?,
2609
+ attribute FlexHeightMode { (FlexWidthHeightMode_EnumValue ) |
2610
+ (FlexEnum_EnumValue )
2611
+ }?,
2612
+ attribute FlexDirection { FlexDirection_EnumValue }?,
2613
+ attribute FlexWrap { FlexWrap_EnumValue }?,
2614
+ attribute JustifyContent { (FlexPosition_EnumValue ) |
2615
+ (FlexSpacing_EnumValue )
2616
+ }?,
2617
+ attribute AlignItems { (FlexPosition_EnumValue ) |
2618
+ (FlexEnum_EnumValue )
2619
+ }?,
2620
+ attribute AlignContent { (FlexPosition_EnumValue ) |
2621
+ (FlexEnum_EnumValue )
2622
+ }?,
2623
+ attribute FlexPaddingTop { xsd:double {minInclusive="0" maxInclusive="720"} }?,
2624
+ attribute FlexPaddingRight { xsd:double {minInclusive="0" maxInclusive="720"} }?,
2625
+ attribute FlexPaddingBottom { xsd:double {minInclusive="0" maxInclusive="720"} }?,
2626
+ attribute FlexPaddingLeft { xsd:double {minInclusive="0" maxInclusive="720"} }?,
2627
+ attribute FlexGapRow { xsd:double {minInclusive="0" maxInclusive="720"} }?,
2628
+ attribute FlexGapColumn { xsd:double {minInclusive="0" maxInclusive="720"} }?,
2629
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
2630
+ attribute AllowOverrides { xsd:boolean }?,
2631
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
2632
+ (FlexEnum_EnumValue )
2633
+ }?,
2634
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
2635
+ (FlexEnum_EnumValue )
2636
+ }?,
2637
+ attribute Visible { xsd:boolean }?,
2638
+ attribute Name { xsd:string }?,
2639
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
2640
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
2641
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
2642
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
2643
+ attribute TopLeftCornerRadius { xsd:double }?,
2644
+ attribute TopRightCornerRadius { xsd:double }?,
2645
+ attribute BottomLeftCornerRadius { xsd:double }?,
2646
+ attribute BottomRightCornerRadius { xsd:double }?,
2647
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2648
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2649
+ attribute FillColor { xsd:string }?,
2650
+ attribute FillTint { xsd:double }?,
2651
+ attribute OverprintFill { xsd:boolean }?,
2652
+ attribute CornerRadius { xsd:double }?,
2653
+ attribute StrokeWeight { xsd:double }?,
2654
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2655
+ attribute EndCap { EndCap_EnumValue }?,
2656
+ attribute EndJoin { EndJoin_EnumValue }?,
2657
+ attribute StrokeType { xsd:string }?,
2658
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2659
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2660
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2661
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2662
+ attribute StrokeColor { xsd:string }?,
2663
+ attribute StrokeTint { xsd:double }?,
2664
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
2665
+ attribute GradientFillLength { xsd:double }?,
2666
+ attribute GradientFillAngle { xsd:double }?,
2667
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
2668
+ attribute GradientStrokeLength { xsd:double }?,
2669
+ attribute GradientStrokeAngle { xsd:double }?,
2670
+ attribute OverprintStroke { xsd:boolean }?,
2671
+ attribute GapColor { xsd:string }?,
2672
+ attribute GapTint { xsd:double }?,
2673
+ attribute OverprintGap { xsd:boolean }?,
2674
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
2675
+ attribute Nonprinting { xsd:boolean }?,
2676
+ attribute ItemLayer { xsd:string }?,
2677
+ attribute Locked { xsd:boolean }?,
2678
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2679
+ attribute GradientFillHiliteLength { xsd:double }?,
2680
+ attribute GradientFillHiliteAngle { xsd:double }?,
2681
+ attribute GradientStrokeHiliteLength { xsd:double }?,
2682
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
2683
+ attribute AppliedObjectStyle { xsd:string }?,
2684
+ attribute CornerOption { CornerOptions_EnumValue }?,
2685
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
2686
+ attribute LeftArrowHeadScale { xsd:double }?,
2687
+ attribute RightArrowHeadScale { xsd:double }?,
2688
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2689
+ attribute BeforeGroupingLayerReference { xsd:string }?,
2690
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
2691
+ attribute LinkResourceId { xsd:int }?,
2692
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
2693
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
2694
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
2695
+ attribute LinkedSourceTableId { xsd:int }?,
2696
+ element Properties {
2697
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
2698
+ }?&
2699
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
2700
+ }?
2701
+ }
2702
+ ?
2703
+ ,
2704
+ (
2705
+ FlexObject_Object*&
2706
+ FormField_Object*&
2707
+ Button_Object*&
2708
+ MultiStateObject_Object*&
2709
+ CheckBox_Object*&
2710
+ ComboBox_Object*&
2711
+ ListBox_Object*&
2712
+ RadioButton_Object*&
2713
+ TextBox_Object*&
2714
+ SignatureField_Object*&
2715
+ Group_Object*&
2716
+ Oval_Object*&
2717
+ Rectangle_Object*&
2718
+ GraphicLine_Object*&
2719
+ TextFrame_Object*&
2720
+ Path_Object*&
2721
+ EndnoteTextFrame_Object*&
2722
+ Polygon_Object*&
2723
+ AnchoredObjectSetting_Object?&
2724
+ AnimationSetting_Object?&
2725
+ TimingSetting_Object?&
2726
+ TextWrapPreference_Object?&
2727
+ LinkedPageItemOption_Object?&
2728
+ Link_Object*&
2729
+ TransparencySetting_Object?&
2730
+ SVG_Object*&
2731
+ Graphic_Object*
2732
+ )
2733
+ }
2734
+
2735
+ Path_Object = element Path {
2736
+ attribute Self { xsd:string },
2737
+ attribute PathType { PathType_EnumValue }?,
2738
+ element Properties {
2739
+ element EntirePath { list_type, element ListItem {
2740
+ list_type,
2741
+ element ListItem { unit_type, xsd:double },
2742
+ element ListItem { unit_type, xsd:double }
2743
+ }*
2744
+ }?
2745
+ }
2746
+ ?
2747
+ ,
2748
+ (
2749
+ PathPoint_Object*
2750
+ )
2751
+ }
2752
+
2753
+ PathPoint_Object = element PathPoint {
2754
+ attribute Self { xsd:string },
2755
+ attribute PointType { PointType_EnumValue }?,
2756
+ attribute Anchor { list { xsd:double ,xsd:double } },
2757
+ attribute LeftDirection { list { xsd:double ,xsd:double } }?,
2758
+ attribute RightDirection { list { xsd:double ,xsd:double } }?
2759
+ }
2760
+
2761
+ Group_Object = element Group {
2762
+ attribute Self { xsd:string },
2763
+ attribute ArticleChildrenList { list { xsd:string * } }?,
2764
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
2765
+ attribute AllowOverrides { xsd:boolean }?,
2766
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
2767
+ (FlexEnum_EnumValue )
2768
+ }?,
2769
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
2770
+ (FlexEnum_EnumValue )
2771
+ }?,
2772
+ attribute Visible { xsd:boolean }?,
2773
+ attribute Name { xsd:string }?,
2774
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
2775
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
2776
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
2777
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
2778
+ attribute TopLeftCornerRadius { xsd:double }?,
2779
+ attribute TopRightCornerRadius { xsd:double }?,
2780
+ attribute BottomLeftCornerRadius { xsd:double }?,
2781
+ attribute BottomRightCornerRadius { xsd:double }?,
2782
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2783
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2784
+ attribute FillColor { xsd:string }?,
2785
+ attribute FillTint { xsd:double }?,
2786
+ attribute OverprintFill { xsd:boolean }?,
2787
+ attribute CornerRadius { xsd:double }?,
2788
+ attribute StrokeWeight { xsd:double }?,
2789
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2790
+ attribute EndCap { EndCap_EnumValue }?,
2791
+ attribute EndJoin { EndJoin_EnumValue }?,
2792
+ attribute StrokeType { xsd:string }?,
2793
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2794
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2795
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2796
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2797
+ attribute StrokeColor { xsd:string }?,
2798
+ attribute StrokeTint { xsd:double }?,
2799
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
2800
+ attribute GradientFillLength { xsd:double }?,
2801
+ attribute GradientFillAngle { xsd:double }?,
2802
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
2803
+ attribute GradientStrokeLength { xsd:double }?,
2804
+ attribute GradientStrokeAngle { xsd:double }?,
2805
+ attribute OverprintStroke { xsd:boolean }?,
2806
+ attribute GapColor { xsd:string }?,
2807
+ attribute GapTint { xsd:double }?,
2808
+ attribute OverprintGap { xsd:boolean }?,
2809
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
2810
+ attribute Nonprinting { xsd:boolean }?,
2811
+ attribute ItemLayer { xsd:string }?,
2812
+ attribute Locked { xsd:boolean }?,
2813
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2814
+ attribute GradientFillHiliteLength { xsd:double }?,
2815
+ attribute GradientFillHiliteAngle { xsd:double }?,
2816
+ attribute GradientStrokeHiliteLength { xsd:double }?,
2817
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
2818
+ attribute AppliedObjectStyle { xsd:string }?,
2819
+ attribute CornerOption { CornerOptions_EnumValue }?,
2820
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
2821
+ attribute LeftArrowHeadScale { xsd:double }?,
2822
+ attribute RightArrowHeadScale { xsd:double }?,
2823
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2824
+ attribute BeforeGroupingLayerReference { xsd:string }?,
2825
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
2826
+ attribute LinkResourceId { xsd:int }?,
2827
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
2828
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
2829
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
2830
+ attribute LinkedSourceTableId { xsd:int }?,
2831
+ element Properties {
2832
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
2833
+ }?
2834
+ }
2835
+ ?
2836
+ ,
2837
+ (
2838
+ (ObjectExportOption_Object?&
2839
+ AnchoredObjectSetting_Object?&
2840
+ AnimationSetting_Object?&
2841
+ TextWrapPreference_Object?&
2842
+ LinkedPageItemOption_Object?&
2843
+ TransparencySetting_Object?&
2844
+ StrokeTransparencySetting_Object?&
2845
+ FillTransparencySetting_Object?),
2846
+ TimingSetting_Object?,
2847
+ (FormField_Object*&
2848
+ Button_Object*&
2849
+ MultiStateObject_Object*&
2850
+ CheckBox_Object*&
2851
+ ComboBox_Object*&
2852
+ ListBox_Object*&
2853
+ RadioButton_Object*&
2854
+ TextBox_Object*&
2855
+ SignatureField_Object*&
2856
+ Group_Object*&
2857
+ EPSText_Object*&
2858
+ Image_Object*&
2859
+ Graphic_Object*&
2860
+ EPS_Object*&
2861
+ WMF_Object*&
2862
+ PICT_Object*&
2863
+ PDF_Object*&
2864
+ Oval_Object*&
2865
+ Rectangle_Object*&
2866
+ GraphicLine_Object*&
2867
+ TextFrame_Object*&
2868
+ Polygon_Object*&
2869
+ EndnoteTextFrame_Object*&
2870
+ Link_Object*&
2871
+ SVG_Object*&
2872
+ ImportedPage_Object*)
2873
+ )
2874
+ }
2875
+
2876
+ ObjectExportOption_Object = element ObjectExportOption {
2877
+ attribute AltTextSourceType { SourceType_EnumValue }?,
2878
+ attribute ActualTextSourceType { SourceType_EnumValue }?,
2879
+ attribute CustomAltText { xsd:string }?,
2880
+ attribute CustomActualText { xsd:string }?,
2881
+ attribute ApplyTagType { TagType_EnumValue }?,
2882
+ attribute ImageConversionType { ImageFormat_EnumValue }?,
2883
+ attribute ImageExportResolution { ImageResolution_EnumValue }?,
2884
+ attribute GIFOptionsPalette { GIFOptionsPalette_EnumValue }?,
2885
+ attribute GIFOptionsInterlaced { xsd:boolean }?,
2886
+ attribute JPEGOptionsQuality { JPEGOptionsQuality_EnumValue }?,
2887
+ attribute JPEGOptionsFormat { JPEGOptionsFormat_EnumValue }?,
2888
+ attribute ImageAlignment { ImageAlignmentType_EnumValue }?,
2889
+ attribute ImageSpaceBefore { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
2890
+ attribute ImageSpaceAfter { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
2891
+ attribute UseImagePageBreak { xsd:boolean }?,
2892
+ attribute ImagePageBreak { ImagePageBreakType_EnumValue }?,
2893
+ attribute CustomImageAlignment { xsd:boolean }?,
2894
+ attribute SpaceUnit { SpaceUnitType_EnumValue }?,
2895
+ attribute CustomImageSizeOption { ImageSizeOption_EnumValue }?,
2896
+ attribute CustomImageConversion { xsd:boolean }?,
2897
+ attribute CustomLayout { xsd:boolean }?,
2898
+ attribute CustomLayoutType { CustomLayoutTypeEnum_EnumValue }?,
2899
+ attribute UseOriginalImage { xsd:boolean }?,
2900
+ attribute EpubType { xsd:string }?,
2901
+ attribute CustomHeightType { CustomHeightTypeEnum_EnumValue }?,
2902
+ attribute CustomHeight { xsd:string }?,
2903
+ attribute CustomWidthType { CustomWidthTypeEnum_EnumValue }?,
2904
+ attribute CustomWidth { xsd:string }?,
2905
+ attribute UseExistingImage { xsd:boolean }?,
2906
+ attribute SizeType { SizeTypeEnum_EnumValue }?,
2907
+ attribute CustomSize { xsd:string }?,
2908
+ attribute PreserveAppearanceFromLayout { PreserveAppearanceFromLayoutEnum_EnumValue }?,
2909
+ attribute EpubAriaRole { xsd:string }?,
2910
+ attribute EpubAriaLabel { xsd:string }?,
2911
+ attribute EpubAriaLabelSourceType { EpubAriaLabelSourceType_EnumValue }?,
2912
+ attribute AltTextGenerationError { xsd:boolean }?,
2913
+ attribute AltTextCropSyncRect { xsd:string }?,
2914
+ attribute AIGeneratedAltText { xsd:boolean }?,
2915
+ element Properties {
2916
+ element AltMetadataProperty {
2917
+ attribute NamespacePrefix { xsd:string },
2918
+ attribute PropertyPath { xsd:string }
2919
+ }?&
2920
+ element ActualMetadataProperty {
2921
+ attribute NamespacePrefix { xsd:string },
2922
+ attribute PropertyPath { xsd:string }
2923
+ }?
2924
+ }
2925
+ ?
2926
+ }
2927
+
2928
+ StrokeTransparencySetting_Object = element StrokeTransparencySetting {
2929
+ (
2930
+ BlendingSetting_Object?&
2931
+ DropShadowSetting_Object?&
2932
+ FeatherSetting_Object?&
2933
+ InnerShadowSetting_Object?&
2934
+ OuterGlowSetting_Object?&
2935
+ InnerGlowSetting_Object?&
2936
+ BevelAndEmbossSetting_Object?&
2937
+ SatinSetting_Object?&
2938
+ DirectionalFeatherSetting_Object?&
2939
+ GradientFeatherSetting_Object?
2940
+ )
2941
+ }
2942
+
2943
+ FillTransparencySetting_Object = element FillTransparencySetting {
2944
+ (
2945
+ BlendingSetting_Object?&
2946
+ DropShadowSetting_Object?&
2947
+ FeatherSetting_Object?&
2948
+ InnerShadowSetting_Object?&
2949
+ OuterGlowSetting_Object?&
2950
+ InnerGlowSetting_Object?&
2951
+ BevelAndEmbossSetting_Object?&
2952
+ SatinSetting_Object?&
2953
+ DirectionalFeatherSetting_Object?&
2954
+ GradientFeatherSetting_Object?
2955
+ )
2956
+ }
2957
+
2958
+ ImportedPage_Object = element ImportedPage {
2959
+ attribute Self { xsd:string },
2960
+ attribute PageNumber { xsd:int }?,
2961
+ attribute ImportedPageCrop { ImportedPageCropOptions_EnumValue }?,
2962
+ attribute Nonprinting { xsd:boolean }?,
2963
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
2964
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
2965
+ attribute ImageTypeName { xsd:string }?,
2966
+ attribute AppliedObjectStyle { xsd:string }?,
2967
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
2968
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
2969
+ (FlexEnum_EnumValue )
2970
+ }?,
2971
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
2972
+ (FlexEnum_EnumValue )
2973
+ }?,
2974
+ attribute Visible { xsd:boolean }?,
2975
+ attribute Name { xsd:string }?,
2976
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
2977
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
2978
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
2979
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
2980
+ attribute TopLeftCornerRadius { xsd:double }?,
2981
+ attribute TopRightCornerRadius { xsd:double }?,
2982
+ attribute BottomLeftCornerRadius { xsd:double }?,
2983
+ attribute BottomRightCornerRadius { xsd:double }?,
2984
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2985
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
2986
+ attribute FillColor { xsd:string }?,
2987
+ attribute FillTint { xsd:double }?,
2988
+ attribute OverprintFill { xsd:boolean }?,
2989
+ attribute CornerRadius { xsd:double }?,
2990
+ attribute StrokeWeight { xsd:double }?,
2991
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
2992
+ attribute EndCap { EndCap_EnumValue }?,
2993
+ attribute EndJoin { EndJoin_EnumValue }?,
2994
+ attribute StrokeType { xsd:string }?,
2995
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
2996
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
2997
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
2998
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
2999
+ attribute StrokeColor { xsd:string }?,
3000
+ attribute StrokeTint { xsd:double }?,
3001
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3002
+ attribute GradientFillLength { xsd:double }?,
3003
+ attribute GradientFillAngle { xsd:double }?,
3004
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3005
+ attribute GradientStrokeLength { xsd:double }?,
3006
+ attribute GradientStrokeAngle { xsd:double }?,
3007
+ attribute OverprintStroke { xsd:boolean }?,
3008
+ attribute GapColor { xsd:string }?,
3009
+ attribute GapTint { xsd:double }?,
3010
+ attribute OverprintGap { xsd:boolean }?,
3011
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3012
+ attribute ItemLayer { xsd:string }?,
3013
+ attribute Locked { xsd:boolean }?,
3014
+ attribute GradientFillHiliteLength { xsd:double }?,
3015
+ attribute GradientFillHiliteAngle { xsd:double }?,
3016
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3017
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3018
+ attribute CornerOption { CornerOptions_EnumValue }?,
3019
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3020
+ attribute LeftArrowHeadScale { xsd:double }?,
3021
+ attribute RightArrowHeadScale { xsd:double }?,
3022
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3023
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3024
+ attribute LinkResourceId { xsd:int }?,
3025
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3026
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3027
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3028
+ attribute LinkedSourceTableId { xsd:int }?,
3029
+ element Properties {
3030
+ element Contents { text }?&
3031
+ element GraphicProxy { text }?&
3032
+ element ClippingPathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3033
+ }?&
3034
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
3035
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3036
+ }?
3037
+ }
3038
+ ?
3039
+ ,
3040
+ (
3041
+ AnimationSetting_Object?&
3042
+ TimingSetting_Object?&
3043
+ TextWrapPreference_Object?&
3044
+ LinkedPageItemOption_Object?&
3045
+ Link_Object*&
3046
+ MetadataPacketPreference_Object?&
3047
+ TransparencySetting_Object?&
3048
+ SVG_Object*&
3049
+ Graphic_Object*&
3050
+ GraphicLayerOption_Object?&
3051
+ ClippingPathSettings_Object?&
3052
+ PDFAttribute_Object?
3053
+ )
3054
+ }
3055
+
3056
+ EPSText_Object = element EPSText {
3057
+ attribute Self { xsd:string },
3058
+ attribute StrokeType { xsd:string }?,
3059
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3060
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3061
+ attribute AllowOverrides { xsd:boolean }?,
3062
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3063
+ (FlexEnum_EnumValue )
3064
+ }?,
3065
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3066
+ (FlexEnum_EnumValue )
3067
+ }?,
3068
+ attribute Visible { xsd:boolean }?,
3069
+ attribute Name { xsd:string }?,
3070
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3071
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3072
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3073
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3074
+ attribute TopLeftCornerRadius { xsd:double }?,
3075
+ attribute TopRightCornerRadius { xsd:double }?,
3076
+ attribute BottomLeftCornerRadius { xsd:double }?,
3077
+ attribute BottomRightCornerRadius { xsd:double }?,
3078
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3079
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3080
+ attribute FillColor { xsd:string }?,
3081
+ attribute FillTint { xsd:double }?,
3082
+ attribute OverprintFill { xsd:boolean }?,
3083
+ attribute CornerRadius { xsd:double }?,
3084
+ attribute StrokeWeight { xsd:double }?,
3085
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3086
+ attribute EndCap { EndCap_EnumValue }?,
3087
+ attribute EndJoin { EndJoin_EnumValue }?,
3088
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3089
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3090
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3091
+ attribute StrokeColor { xsd:string }?,
3092
+ attribute StrokeTint { xsd:double }?,
3093
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3094
+ attribute GradientFillLength { xsd:double }?,
3095
+ attribute GradientFillAngle { xsd:double }?,
3096
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3097
+ attribute GradientStrokeLength { xsd:double }?,
3098
+ attribute GradientStrokeAngle { xsd:double }?,
3099
+ attribute OverprintStroke { xsd:boolean }?,
3100
+ attribute GapColor { xsd:string }?,
3101
+ attribute GapTint { xsd:double }?,
3102
+ attribute OverprintGap { xsd:boolean }?,
3103
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3104
+ attribute Nonprinting { xsd:boolean }?,
3105
+ attribute ItemLayer { xsd:string }?,
3106
+ attribute Locked { xsd:boolean }?,
3107
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3108
+ attribute GradientFillHiliteLength { xsd:double }?,
3109
+ attribute GradientFillHiliteAngle { xsd:double }?,
3110
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3111
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3112
+ attribute AppliedObjectStyle { xsd:string }?,
3113
+ attribute CornerOption { CornerOptions_EnumValue }?,
3114
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3115
+ attribute LeftArrowHeadScale { xsd:double }?,
3116
+ attribute RightArrowHeadScale { xsd:double }?,
3117
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3118
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3119
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3120
+ attribute LinkResourceId { xsd:int }?,
3121
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3122
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3123
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3124
+ attribute LinkedSourceTableId { xsd:int }?,
3125
+ element Properties {
3126
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
3127
+ element EPSTextData { text }?&
3128
+ element EPSTextAttributeBounds { UnitRectangleBoundsType_TypeDef }?&
3129
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3130
+ }?
3131
+ }
3132
+ ?
3133
+ ,
3134
+ (
3135
+ AnchoredObjectSetting_Object?&
3136
+ AnimationSetting_Object?&
3137
+ TimingSetting_Object?&
3138
+ TextWrapPreference_Object?&
3139
+ LinkedPageItemOption_Object?&
3140
+ Link_Object*&
3141
+ TransparencySetting_Object?&
3142
+ SVG_Object*&
3143
+ Graphic_Object*&
3144
+ TextPath_Object*
3145
+ )
3146
+ }
3147
+
3148
+ TextPath_Object = element TextPath {
3149
+ attribute Self { xsd:string },
3150
+ attribute ParentStory { xsd:string }?,
3151
+ attribute PathAlignment { PathTypeAlignments_EnumValue }?,
3152
+ attribute TextAlignment { TextTypeAlignments_EnumValue }?,
3153
+ attribute PathEffect { TextPathEffects_EnumValue }?,
3154
+ attribute FlipPathEffect { FlipValues_EnumValue }?,
3155
+ attribute PathSpacing { xsd:int }?,
3156
+ attribute StartBracket { xsd:double }?,
3157
+ attribute EndBracket { xsd:double }?,
3158
+ attribute PreviousTextFrame { xsd:string }?,
3159
+ attribute NextTextFrame { xsd:string }?,
3160
+ element Properties {
3161
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3162
+ }?
3163
+ }
3164
+ ?
3165
+ }
3166
+
3167
+ TimingSetting_Object = element TimingSetting {
3168
+ (
3169
+ TimingList_Object*
3170
+ )
3171
+ }
3172
+
3173
+ TimingList_Object = element TimingList {
3174
+ attribute Self { xsd:string },
3175
+ attribute TriggerEvent { DynamicTriggerEvents_EnumValue }?,
3176
+ (
3177
+ TimingGroup_Object*
3178
+ )
3179
+ }
3180
+
3181
+ TimingGroup_Object = element TimingGroup {
3182
+ attribute Self { xsd:string },
3183
+ attribute Plays { xsd:int {minInclusive="1" maxInclusive="100"} }?,
3184
+ attribute PlaysLoop { xsd:boolean }?,
3185
+ (
3186
+ TimingTarget_Object*
3187
+ )
3188
+ }
3189
+
3190
+ TimingTarget_Object = element TimingTarget {
3191
+ attribute Self { xsd:string },
3192
+ attribute DynamicTarget { xsd:string }?,
3193
+ attribute DelaySeconds { xsd:double {minInclusive="0" maxInclusive="60"} }?,
3194
+ attribute ReverseAnimation { xsd:boolean }?,
3195
+ attribute TargetRole { xsd:int }?,
3196
+ attribute TargetAction { xsd:int }?,
3197
+ attribute Placement { xsd:int }?
3198
+ }
3199
+
3200
+ Oval_Object = element Oval {
3201
+ attribute Self { xsd:string },
3202
+ attribute ContentType { ContentType_EnumValue }?,
3203
+ attribute StoryTitle { xsd:string }?,
3204
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3205
+ attribute AllowOverrides { xsd:boolean }?,
3206
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3207
+ (FlexEnum_EnumValue )
3208
+ }?,
3209
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3210
+ (FlexEnum_EnumValue )
3211
+ }?,
3212
+ attribute Visible { xsd:boolean }?,
3213
+ attribute Name { xsd:string }?,
3214
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3215
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3216
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3217
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3218
+ attribute TopLeftCornerRadius { xsd:double }?,
3219
+ attribute TopRightCornerRadius { xsd:double }?,
3220
+ attribute BottomLeftCornerRadius { xsd:double }?,
3221
+ attribute BottomRightCornerRadius { xsd:double }?,
3222
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3223
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3224
+ attribute FillColor { xsd:string }?,
3225
+ attribute FillTint { xsd:double }?,
3226
+ attribute OverprintFill { xsd:boolean }?,
3227
+ attribute CornerRadius { xsd:double }?,
3228
+ attribute StrokeWeight { xsd:double }?,
3229
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3230
+ attribute EndCap { EndCap_EnumValue }?,
3231
+ attribute EndJoin { EndJoin_EnumValue }?,
3232
+ attribute StrokeType { xsd:string }?,
3233
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3234
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3235
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3236
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3237
+ attribute StrokeColor { xsd:string }?,
3238
+ attribute StrokeTint { xsd:double }?,
3239
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3240
+ attribute GradientFillLength { xsd:double }?,
3241
+ attribute GradientFillAngle { xsd:double }?,
3242
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3243
+ attribute GradientStrokeLength { xsd:double }?,
3244
+ attribute GradientStrokeAngle { xsd:double }?,
3245
+ attribute OverprintStroke { xsd:boolean }?,
3246
+ attribute GapColor { xsd:string }?,
3247
+ attribute GapTint { xsd:double }?,
3248
+ attribute OverprintGap { xsd:boolean }?,
3249
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3250
+ attribute Nonprinting { xsd:boolean }?,
3251
+ attribute ItemLayer { xsd:string }?,
3252
+ attribute Locked { xsd:boolean }?,
3253
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3254
+ attribute GradientFillHiliteLength { xsd:double }?,
3255
+ attribute GradientFillHiliteAngle { xsd:double }?,
3256
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3257
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3258
+ attribute AppliedObjectStyle { xsd:string }?,
3259
+ attribute CornerOption { CornerOptions_EnumValue }?,
3260
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3261
+ attribute LeftArrowHeadScale { xsd:double }?,
3262
+ attribute RightArrowHeadScale { xsd:double }?,
3263
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3264
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3265
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3266
+ attribute LinkResourceId { xsd:int }?,
3267
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3268
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3269
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3270
+ attribute LinkedSourceTableId { xsd:int }?,
3271
+ element Properties {
3272
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3273
+ }?&
3274
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3275
+ }?
3276
+ }
3277
+ ?
3278
+ ,
3279
+ (
3280
+ TextPath_Object*,
3281
+ (FrameFittingOption_Object?&
3282
+ ObjectExportOption_Object?&
3283
+ AnchoredObjectSetting_Object?&
3284
+ AnimationSetting_Object?&
3285
+ TimingSetting_Object?&
3286
+ TextWrapPreference_Object?&
3287
+ LinkedPageItemOption_Object?&
3288
+ InCopyExportOption_Object?&
3289
+ TransparencySetting_Object?&
3290
+ StrokeTransparencySetting_Object?&
3291
+ FillTransparencySetting_Object?),
3292
+ (FormField_Object*&
3293
+ Button_Object*&
3294
+ MultiStateObject_Object*&
3295
+ CheckBox_Object*&
3296
+ ComboBox_Object*&
3297
+ ListBox_Object*&
3298
+ RadioButton_Object*&
3299
+ TextBox_Object*&
3300
+ SignatureField_Object*&
3301
+ Image_Object*&
3302
+ Graphic_Object*&
3303
+ EPS_Object*&
3304
+ WMF_Object*&
3305
+ PICT_Object*&
3306
+ PDF_Object*&
3307
+ Group_Object*&
3308
+ EPSText_Object*&
3309
+ Sound_Object*&
3310
+ Movie_Object*&
3311
+ Oval_Object*&
3312
+ Rectangle_Object*&
3313
+ GraphicLine_Object*&
3314
+ TextFrame_Object*&
3315
+ Polygon_Object*&
3316
+ EndnoteTextFrame_Object*&
3317
+ Link_Object*&
3318
+ HtmlItem_Object*&
3319
+ SVG_Object*&
3320
+ ImportedPage_Object*)
3321
+ )
3322
+ }
3323
+
3324
+ FrameFittingOption_Object = element FrameFittingOption {
3325
+ attribute AutoFit { xsd:boolean }?,
3326
+ attribute LeftCrop { xsd:double }?,
3327
+ attribute TopCrop { xsd:double }?,
3328
+ attribute RightCrop { xsd:double }?,
3329
+ attribute BottomCrop { xsd:double }?,
3330
+ attribute FittingOnEmptyFrame { EmptyFrameFittingOptions_EnumValue }?,
3331
+ attribute FittingAlignment { AnchorPoint_EnumValue }?
3332
+ }
3333
+
3334
+ InCopyExportOption_Object = element InCopyExportOption {
3335
+ attribute IncludeGraphicProxies { xsd:boolean }?,
3336
+ attribute IncludeAllResources { xsd:boolean }?
3337
+ }
3338
+
3339
+ Sound_Object = element Sound {
3340
+ attribute Self { xsd:string },
3341
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3342
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3343
+ attribute Name { xsd:string }?,
3344
+ attribute Description { xsd:string }?,
3345
+ attribute PlayOnPageTurn { xsd:boolean }?,
3346
+ attribute DoNotPrintPoster { xsd:boolean }?,
3347
+ attribute EmbedInPDF { xsd:boolean }?,
3348
+ attribute ItemLayer { xsd:string }?,
3349
+ attribute FilePath { xsd:string }?,
3350
+ attribute StopOnPageTurn { xsd:boolean }?,
3351
+ attribute SoundLoop { xsd:boolean }?,
3352
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3353
+ (FlexEnum_EnumValue )
3354
+ }?,
3355
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3356
+ (FlexEnum_EnumValue )
3357
+ }?,
3358
+ attribute Visible { xsd:boolean }?,
3359
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3360
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3361
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3362
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3363
+ attribute TopLeftCornerRadius { xsd:double }?,
3364
+ attribute TopRightCornerRadius { xsd:double }?,
3365
+ attribute BottomLeftCornerRadius { xsd:double }?,
3366
+ attribute BottomRightCornerRadius { xsd:double }?,
3367
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3368
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3369
+ attribute FillColor { xsd:string }?,
3370
+ attribute FillTint { xsd:double }?,
3371
+ attribute OverprintFill { xsd:boolean }?,
3372
+ attribute CornerRadius { xsd:double }?,
3373
+ attribute StrokeWeight { xsd:double }?,
3374
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3375
+ attribute EndCap { EndCap_EnumValue }?,
3376
+ attribute EndJoin { EndJoin_EnumValue }?,
3377
+ attribute StrokeType { xsd:string }?,
3378
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3379
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3380
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3381
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3382
+ attribute StrokeColor { xsd:string }?,
3383
+ attribute StrokeTint { xsd:double }?,
3384
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3385
+ attribute GradientFillLength { xsd:double }?,
3386
+ attribute GradientFillAngle { xsd:double }?,
3387
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3388
+ attribute GradientStrokeLength { xsd:double }?,
3389
+ attribute GradientStrokeAngle { xsd:double }?,
3390
+ attribute OverprintStroke { xsd:boolean }?,
3391
+ attribute GapColor { xsd:string }?,
3392
+ attribute GapTint { xsd:double }?,
3393
+ attribute OverprintGap { xsd:boolean }?,
3394
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3395
+ attribute Nonprinting { xsd:boolean }?,
3396
+ attribute Locked { xsd:boolean }?,
3397
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3398
+ attribute GradientFillHiliteLength { xsd:double }?,
3399
+ attribute GradientFillHiliteAngle { xsd:double }?,
3400
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3401
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3402
+ attribute AppliedObjectStyle { xsd:string }?,
3403
+ attribute CornerOption { CornerOptions_EnumValue }?,
3404
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3405
+ attribute LeftArrowHeadScale { xsd:double }?,
3406
+ attribute RightArrowHeadScale { xsd:double }?,
3407
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3408
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3409
+ attribute LinkResourceId { xsd:int }?,
3410
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3411
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3412
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3413
+ attribute LinkedSourceTableId { xsd:int }?,
3414
+ element Properties {
3415
+ element Contents { text }?&
3416
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3417
+ }?&
3418
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
3419
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3420
+ }?
3421
+ }
3422
+ ?
3423
+ ,
3424
+ (
3425
+ Image_Object*&
3426
+ Graphic_Object*&
3427
+ AnimationSetting_Object?&
3428
+ TimingSetting_Object?&
3429
+ TextWrapPreference_Object?&
3430
+ LinkedPageItemOption_Object?&
3431
+ Link_Object*&
3432
+ TransparencySetting_Object?&
3433
+ SVG_Object*
3434
+ )
3435
+ }
3436
+
3437
+ Movie_Object = element Movie {
3438
+ attribute Self { xsd:string },
3439
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3440
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3441
+ attribute Name { xsd:string }?,
3442
+ attribute Description { xsd:string }?,
3443
+ attribute FloatingWindowPosition { FloatingWindowPosition_EnumValue }?,
3444
+ attribute FloatingWindowSize { FloatingWindowSize_EnumValue }?,
3445
+ attribute PlayOnPageTurn { xsd:boolean }?,
3446
+ attribute ShowControls { xsd:boolean }?,
3447
+ attribute FloatingWindow { xsd:boolean }?,
3448
+ attribute URL { xsd:string }?,
3449
+ attribute EmbedInPDF { xsd:boolean }?,
3450
+ attribute PlayMode { PlayMode_EnumValue }?,
3451
+ attribute CustomPoster { xsd:boolean }?,
3452
+ attribute IntrinsicBounds { list { xsd:int ,xsd:int } }?,
3453
+ attribute CanChoosePosters { xsd:boolean }?,
3454
+ attribute PosterAvailable { xsd:boolean }?,
3455
+ attribute ItemLayer { xsd:string }?,
3456
+ attribute FilePath { xsd:string }?,
3457
+ attribute ControllerSkin { xsd:string }?,
3458
+ attribute ShowController { xsd:boolean }?,
3459
+ attribute MovieLoop { xsd:boolean }?,
3460
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3461
+ (FlexEnum_EnumValue )
3462
+ }?,
3463
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3464
+ (FlexEnum_EnumValue )
3465
+ }?,
3466
+ attribute Visible { xsd:boolean }?,
3467
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3468
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3469
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3470
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3471
+ attribute TopLeftCornerRadius { xsd:double }?,
3472
+ attribute TopRightCornerRadius { xsd:double }?,
3473
+ attribute BottomLeftCornerRadius { xsd:double }?,
3474
+ attribute BottomRightCornerRadius { xsd:double }?,
3475
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3476
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3477
+ attribute FillColor { xsd:string }?,
3478
+ attribute FillTint { xsd:double }?,
3479
+ attribute OverprintFill { xsd:boolean }?,
3480
+ attribute CornerRadius { xsd:double }?,
3481
+ attribute StrokeWeight { xsd:double }?,
3482
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3483
+ attribute EndCap { EndCap_EnumValue }?,
3484
+ attribute EndJoin { EndJoin_EnumValue }?,
3485
+ attribute StrokeType { xsd:string }?,
3486
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3487
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3488
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3489
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3490
+ attribute StrokeColor { xsd:string }?,
3491
+ attribute StrokeTint { xsd:double }?,
3492
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3493
+ attribute GradientFillLength { xsd:double }?,
3494
+ attribute GradientFillAngle { xsd:double }?,
3495
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3496
+ attribute GradientStrokeLength { xsd:double }?,
3497
+ attribute GradientStrokeAngle { xsd:double }?,
3498
+ attribute OverprintStroke { xsd:boolean }?,
3499
+ attribute GapColor { xsd:string }?,
3500
+ attribute GapTint { xsd:double }?,
3501
+ attribute OverprintGap { xsd:boolean }?,
3502
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3503
+ attribute Nonprinting { xsd:boolean }?,
3504
+ attribute Locked { xsd:boolean }?,
3505
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3506
+ attribute GradientFillHiliteLength { xsd:double }?,
3507
+ attribute GradientFillHiliteAngle { xsd:double }?,
3508
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3509
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3510
+ attribute AppliedObjectStyle { xsd:string }?,
3511
+ attribute CornerOption { CornerOptions_EnumValue }?,
3512
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3513
+ attribute LeftArrowHeadScale { xsd:double }?,
3514
+ attribute RightArrowHeadScale { xsd:double }?,
3515
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3516
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3517
+ attribute LinkResourceId { xsd:int }?,
3518
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3519
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3520
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3521
+ attribute LinkedSourceTableId { xsd:int }?,
3522
+ element Properties {
3523
+ element Contents { text }?&
3524
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3525
+ }?&
3526
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
3527
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3528
+ }?
3529
+ }
3530
+ ?
3531
+ ,
3532
+ (
3533
+ AnimationSetting_Object?&
3534
+ TimingSetting_Object?&
3535
+ TextWrapPreference_Object?&
3536
+ Image_Object*&
3537
+ Graphic_Object*&
3538
+ NavigationPoint_Object*&
3539
+ LinkedPageItemOption_Object?&
3540
+ Link_Object*&
3541
+ TransparencySetting_Object?&
3542
+ SVG_Object*
3543
+ )
3544
+ }
3545
+
3546
+ NavigationPoint_Object = element NavigationPoint {
3547
+ attribute Self { xsd:string },
3548
+ attribute Id { xsd:int }?,
3549
+ attribute Name { xsd:string }?,
3550
+ attribute Time { xsd:double }?
3551
+ }
3552
+
3553
+ HtmlItem_Object = element HtmlItem {
3554
+ attribute Self { xsd:string },
3555
+ attribute HtmlContent { xsd:string }?,
3556
+ attribute FixedDimensions { xsd:boolean }?,
3557
+ attribute RelativeSubPath { xsd:string }?,
3558
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3559
+ attribute AllowOverrides { xsd:boolean }?,
3560
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3561
+ (FlexEnum_EnumValue )
3562
+ }?,
3563
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3564
+ (FlexEnum_EnumValue )
3565
+ }?,
3566
+ attribute Visible { xsd:boolean }?,
3567
+ attribute Name { xsd:string }?,
3568
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3569
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3570
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3571
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3572
+ attribute TopLeftCornerRadius { xsd:double }?,
3573
+ attribute TopRightCornerRadius { xsd:double }?,
3574
+ attribute BottomLeftCornerRadius { xsd:double }?,
3575
+ attribute BottomRightCornerRadius { xsd:double }?,
3576
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3577
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3578
+ attribute FillColor { xsd:string }?,
3579
+ attribute FillTint { xsd:double }?,
3580
+ attribute OverprintFill { xsd:boolean }?,
3581
+ attribute CornerRadius { xsd:double }?,
3582
+ attribute StrokeWeight { xsd:double }?,
3583
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3584
+ attribute EndCap { EndCap_EnumValue }?,
3585
+ attribute EndJoin { EndJoin_EnumValue }?,
3586
+ attribute StrokeType { xsd:string }?,
3587
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3588
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3589
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3590
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3591
+ attribute StrokeColor { xsd:string }?,
3592
+ attribute StrokeTint { xsd:double }?,
3593
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3594
+ attribute GradientFillLength { xsd:double }?,
3595
+ attribute GradientFillAngle { xsd:double }?,
3596
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3597
+ attribute GradientStrokeLength { xsd:double }?,
3598
+ attribute GradientStrokeAngle { xsd:double }?,
3599
+ attribute OverprintStroke { xsd:boolean }?,
3600
+ attribute GapColor { xsd:string }?,
3601
+ attribute GapTint { xsd:double }?,
3602
+ attribute OverprintGap { xsd:boolean }?,
3603
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3604
+ attribute Nonprinting { xsd:boolean }?,
3605
+ attribute ItemLayer { xsd:string }?,
3606
+ attribute Locked { xsd:boolean }?,
3607
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3608
+ attribute GradientFillHiliteLength { xsd:double }?,
3609
+ attribute GradientFillHiliteAngle { xsd:double }?,
3610
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3611
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3612
+ attribute AppliedObjectStyle { xsd:string }?,
3613
+ attribute CornerOption { CornerOptions_EnumValue }?,
3614
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3615
+ attribute LeftArrowHeadScale { xsd:double }?,
3616
+ attribute RightArrowHeadScale { xsd:double }?,
3617
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3618
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3619
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3620
+ attribute LinkResourceId { xsd:int }?,
3621
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3622
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3623
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3624
+ attribute LinkedSourceTableId { xsd:int }?,
3625
+ element Properties {
3626
+ element Poster { text }?&
3627
+ element PathBoundingBox { RectangleBoundsType_TypeDef }?&
3628
+ element GraphicBounds { RectangleBoundsType_TypeDef }?&
3629
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3630
+ }?&
3631
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3632
+ }?
3633
+ }
3634
+ ?
3635
+ ,
3636
+ (
3637
+ AnimationSetting_Object?&
3638
+ TimingSetting_Object?&
3639
+ TextWrapPreference_Object?&
3640
+ LinkedPageItemOption_Object?&
3641
+ Link_Object*&
3642
+ TransparencySetting_Object?&
3643
+ SVG_Object*&
3644
+ Graphic_Object*
3645
+ )
3646
+ }
3647
+
3648
+ Rectangle_Object = element Rectangle {
3649
+ attribute Self { xsd:string },
3650
+ attribute ContentType { ContentType_EnumValue }?,
3651
+ attribute StoryTitle { xsd:string }?,
3652
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3653
+ attribute AllowOverrides { xsd:boolean }?,
3654
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3655
+ (FlexEnum_EnumValue )
3656
+ }?,
3657
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3658
+ (FlexEnum_EnumValue )
3659
+ }?,
3660
+ attribute Visible { xsd:boolean }?,
3661
+ attribute Name { xsd:string }?,
3662
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3663
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3664
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3665
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3666
+ attribute TopLeftCornerRadius { xsd:double }?,
3667
+ attribute TopRightCornerRadius { xsd:double }?,
3668
+ attribute BottomLeftCornerRadius { xsd:double }?,
3669
+ attribute BottomRightCornerRadius { xsd:double }?,
3670
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3671
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3672
+ attribute FillColor { xsd:string }?,
3673
+ attribute FillTint { xsd:double }?,
3674
+ attribute OverprintFill { xsd:boolean }?,
3675
+ attribute CornerRadius { xsd:double }?,
3676
+ attribute StrokeWeight { xsd:double }?,
3677
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3678
+ attribute EndCap { EndCap_EnumValue }?,
3679
+ attribute EndJoin { EndJoin_EnumValue }?,
3680
+ attribute StrokeType { xsd:string }?,
3681
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3682
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3683
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3684
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3685
+ attribute StrokeColor { xsd:string }?,
3686
+ attribute StrokeTint { xsd:double }?,
3687
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3688
+ attribute GradientFillLength { xsd:double }?,
3689
+ attribute GradientFillAngle { xsd:double }?,
3690
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3691
+ attribute GradientStrokeLength { xsd:double }?,
3692
+ attribute GradientStrokeAngle { xsd:double }?,
3693
+ attribute OverprintStroke { xsd:boolean }?,
3694
+ attribute GapColor { xsd:string }?,
3695
+ attribute GapTint { xsd:double }?,
3696
+ attribute OverprintGap { xsd:boolean }?,
3697
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3698
+ attribute Nonprinting { xsd:boolean }?,
3699
+ attribute ItemLayer { xsd:string }?,
3700
+ attribute Locked { xsd:boolean }?,
3701
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3702
+ attribute GradientFillHiliteLength { xsd:double }?,
3703
+ attribute GradientFillHiliteAngle { xsd:double }?,
3704
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3705
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3706
+ attribute AppliedObjectStyle { xsd:string }?,
3707
+ attribute CornerOption { CornerOptions_EnumValue }?,
3708
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3709
+ attribute LeftArrowHeadScale { xsd:double }?,
3710
+ attribute RightArrowHeadScale { xsd:double }?,
3711
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3712
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3713
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3714
+ attribute LinkResourceId { xsd:int }?,
3715
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3716
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3717
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3718
+ attribute LinkedSourceTableId { xsd:int }?,
3719
+ element Properties {
3720
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3721
+ }?&
3722
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3723
+ }?
3724
+ }
3725
+ ?
3726
+ ,
3727
+ (
3728
+ TextPath_Object*,
3729
+ (FrameFittingOption_Object?&
3730
+ ObjectExportOption_Object?&
3731
+ AnchoredObjectSetting_Object?&
3732
+ AnimationSetting_Object?&
3733
+ TimingSetting_Object?&
3734
+ TextWrapPreference_Object?&
3735
+ LinkedPageItemOption_Object?&
3736
+ InCopyExportOption_Object?&
3737
+ TransparencySetting_Object?&
3738
+ StrokeTransparencySetting_Object?&
3739
+ FillTransparencySetting_Object?),
3740
+ (FormField_Object*&
3741
+ Button_Object*&
3742
+ MultiStateObject_Object*&
3743
+ CheckBox_Object*&
3744
+ ComboBox_Object*&
3745
+ ListBox_Object*&
3746
+ RadioButton_Object*&
3747
+ TextBox_Object*&
3748
+ SignatureField_Object*&
3749
+ Image_Object*&
3750
+ Graphic_Object*&
3751
+ EPS_Object*&
3752
+ WMF_Object*&
3753
+ PICT_Object*&
3754
+ PDF_Object*&
3755
+ Group_Object*&
3756
+ EPSText_Object*&
3757
+ Sound_Object*&
3758
+ Movie_Object*&
3759
+ Oval_Object*&
3760
+ Rectangle_Object*&
3761
+ GraphicLine_Object*&
3762
+ TextFrame_Object*&
3763
+ Polygon_Object*&
3764
+ EndnoteTextFrame_Object*&
3765
+ Link_Object*&
3766
+ HtmlItem_Object*&
3767
+ SVG_Object*&
3768
+ MathObject_Object*&
3769
+ ImportedPage_Object*)
3770
+ )
3771
+ }
3772
+
3773
+ MathObject_Object = element MathObject {
3774
+ attribute Self { xsd:string },
3775
+ attribute AppliedMathMLFontSize { xsd:double }?,
3776
+ attribute AppliedMathMLRgbColor { list { xsd:double ,xsd:double ,xsd:double } }?,
3777
+ attribute TintValue { xsd:double {minInclusive="0" maxInclusive="100"} }?,
3778
+ attribute IsMathMLObject { xsd:boolean }?,
3779
+ attribute MathMLDescription { xsd:string }?,
3780
+ attribute MathmlSvgData { xsd:string }?,
3781
+ element Properties {
3782
+ element AppliedMathMLSwatch {
3783
+ (object_type, xsd:string ) |
3784
+ (enum_type, NothingEnum_EnumValue )
3785
+ }?&
3786
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3787
+ }?
3788
+ }
3789
+ ?
3790
+ }
3791
+
3792
+ GraphicLine_Object = element GraphicLine {
3793
+ attribute Self { xsd:string },
3794
+ attribute ContentType { ContentType_EnumValue }?,
3795
+ attribute LockState { LockStateValues_EnumValue }?,
3796
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3797
+ attribute AllowOverrides { xsd:boolean }?,
3798
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3799
+ (FlexEnum_EnumValue )
3800
+ }?,
3801
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3802
+ (FlexEnum_EnumValue )
3803
+ }?,
3804
+ attribute Visible { xsd:boolean }?,
3805
+ attribute Name { xsd:string }?,
3806
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3807
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3808
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3809
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3810
+ attribute TopLeftCornerRadius { xsd:double }?,
3811
+ attribute TopRightCornerRadius { xsd:double }?,
3812
+ attribute BottomLeftCornerRadius { xsd:double }?,
3813
+ attribute BottomRightCornerRadius { xsd:double }?,
3814
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3815
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3816
+ attribute FillColor { xsd:string }?,
3817
+ attribute FillTint { xsd:double }?,
3818
+ attribute OverprintFill { xsd:boolean }?,
3819
+ attribute CornerRadius { xsd:double }?,
3820
+ attribute StrokeWeight { xsd:double }?,
3821
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3822
+ attribute EndCap { EndCap_EnumValue }?,
3823
+ attribute EndJoin { EndJoin_EnumValue }?,
3824
+ attribute StrokeType { xsd:string }?,
3825
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3826
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3827
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3828
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3829
+ attribute StrokeColor { xsd:string }?,
3830
+ attribute StrokeTint { xsd:double }?,
3831
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3832
+ attribute GradientFillLength { xsd:double }?,
3833
+ attribute GradientFillAngle { xsd:double }?,
3834
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3835
+ attribute GradientStrokeLength { xsd:double }?,
3836
+ attribute GradientStrokeAngle { xsd:double }?,
3837
+ attribute OverprintStroke { xsd:boolean }?,
3838
+ attribute GapColor { xsd:string }?,
3839
+ attribute GapTint { xsd:double }?,
3840
+ attribute OverprintGap { xsd:boolean }?,
3841
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3842
+ attribute Nonprinting { xsd:boolean }?,
3843
+ attribute ItemLayer { xsd:string }?,
3844
+ attribute Locked { xsd:boolean }?,
3845
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3846
+ attribute GradientFillHiliteLength { xsd:double }?,
3847
+ attribute GradientFillHiliteAngle { xsd:double }?,
3848
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3849
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3850
+ attribute AppliedObjectStyle { xsd:string }?,
3851
+ attribute CornerOption { CornerOptions_EnumValue }?,
3852
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3853
+ attribute LeftArrowHeadScale { xsd:double }?,
3854
+ attribute RightArrowHeadScale { xsd:double }?,
3855
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3856
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3857
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3858
+ attribute LinkResourceId { xsd:int }?,
3859
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3860
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3861
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3862
+ attribute LinkedSourceTableId { xsd:int }?,
3863
+ element Properties {
3864
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3865
+ }?&
3866
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3867
+ }?
3868
+ }
3869
+ ?
3870
+ ,
3871
+ (
3872
+ TextPath_Object*,
3873
+ (ObjectExportOption_Object?&
3874
+ AnchoredObjectSetting_Object?&
3875
+ AnimationSetting_Object?&
3876
+ TimingSetting_Object?&
3877
+ TextWrapPreference_Object?&
3878
+ LinkedPageItemOption_Object?&
3879
+ TransparencySetting_Object?&
3880
+ StrokeTransparencySetting_Object?&
3881
+ FillTransparencySetting_Object?),
3882
+ (FormField_Object*&
3883
+ Button_Object*&
3884
+ MultiStateObject_Object*&
3885
+ CheckBox_Object*&
3886
+ ComboBox_Object*&
3887
+ ListBox_Object*&
3888
+ RadioButton_Object*&
3889
+ TextBox_Object*&
3890
+ SignatureField_Object*&
3891
+ Image_Object*&
3892
+ Graphic_Object*&
3893
+ EPS_Object*&
3894
+ WMF_Object*&
3895
+ PICT_Object*&
3896
+ PDF_Object*&
3897
+ Group_Object*&
3898
+ EPSText_Object*&
3899
+ Sound_Object*&
3900
+ Movie_Object*&
3901
+ Oval_Object*&
3902
+ Rectangle_Object*&
3903
+ GraphicLine_Object*&
3904
+ TextFrame_Object*&
3905
+ Polygon_Object*&
3906
+ EndnoteTextFrame_Object*&
3907
+ Link_Object*&
3908
+ HtmlItem_Object*&
3909
+ SVG_Object*&
3910
+ ImportedPage_Object*)
3911
+ )
3912
+ }
3913
+
3914
+ TextFrame_Object = element TextFrame {
3915
+ attribute Self { xsd:string },
3916
+ attribute ParentStory { xsd:string }?,
3917
+ attribute PreviousTextFrame { xsd:string }?,
3918
+ attribute NextTextFrame { xsd:string }?,
3919
+ attribute ContentType { ContentType_EnumValue }?,
3920
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
3921
+ attribute AllowOverrides { xsd:boolean }?,
3922
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
3923
+ (FlexEnum_EnumValue )
3924
+ }?,
3925
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
3926
+ (FlexEnum_EnumValue )
3927
+ }?,
3928
+ attribute Visible { xsd:boolean }?,
3929
+ attribute Name { xsd:string }?,
3930
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
3931
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
3932
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
3933
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
3934
+ attribute TopLeftCornerRadius { xsd:double }?,
3935
+ attribute TopRightCornerRadius { xsd:double }?,
3936
+ attribute BottomLeftCornerRadius { xsd:double }?,
3937
+ attribute BottomRightCornerRadius { xsd:double }?,
3938
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3939
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
3940
+ attribute FillColor { xsd:string }?,
3941
+ attribute FillTint { xsd:double }?,
3942
+ attribute OverprintFill { xsd:boolean }?,
3943
+ attribute CornerRadius { xsd:double }?,
3944
+ attribute StrokeWeight { xsd:double }?,
3945
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
3946
+ attribute EndCap { EndCap_EnumValue }?,
3947
+ attribute EndJoin { EndJoin_EnumValue }?,
3948
+ attribute StrokeType { xsd:string }?,
3949
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
3950
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
3951
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
3952
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
3953
+ attribute StrokeColor { xsd:string }?,
3954
+ attribute StrokeTint { xsd:double }?,
3955
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
3956
+ attribute GradientFillLength { xsd:double }?,
3957
+ attribute GradientFillAngle { xsd:double }?,
3958
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
3959
+ attribute GradientStrokeLength { xsd:double }?,
3960
+ attribute GradientStrokeAngle { xsd:double }?,
3961
+ attribute OverprintStroke { xsd:boolean }?,
3962
+ attribute GapColor { xsd:string }?,
3963
+ attribute GapTint { xsd:double }?,
3964
+ attribute OverprintGap { xsd:boolean }?,
3965
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
3966
+ attribute Nonprinting { xsd:boolean }?,
3967
+ attribute ItemLayer { xsd:string }?,
3968
+ attribute Locked { xsd:boolean }?,
3969
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
3970
+ attribute GradientFillHiliteLength { xsd:double }?,
3971
+ attribute GradientFillHiliteAngle { xsd:double }?,
3972
+ attribute GradientStrokeHiliteLength { xsd:double }?,
3973
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
3974
+ attribute AppliedObjectStyle { xsd:string }?,
3975
+ attribute CornerOption { CornerOptions_EnumValue }?,
3976
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
3977
+ attribute LeftArrowHeadScale { xsd:double }?,
3978
+ attribute RightArrowHeadScale { xsd:double }?,
3979
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
3980
+ attribute BeforeGroupingLayerReference { xsd:string }?,
3981
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
3982
+ attribute LinkResourceId { xsd:int }?,
3983
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
3984
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
3985
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
3986
+ attribute LinkedSourceTableId { xsd:int }?,
3987
+ element Properties {
3988
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
3989
+ }?&
3990
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
3991
+ }?
3992
+ }
3993
+ ?
3994
+ ,
3995
+ (
3996
+ (GridDataInformation_Object?&
3997
+ TextPath_Object*),
3998
+ (ObjectExportOption_Object?&
3999
+ TextFramePreference_Object?&
4000
+ AnchoredObjectSetting_Object?&
4001
+ BaselineFrameGridOption_Object?&
4002
+ TextFrameFootnoteOptionsObject_Object?&
4003
+ AnimationSetting_Object?&
4004
+ TimingSetting_Object?&
4005
+ TextWrapPreference_Object?&
4006
+ LinkedPageItemOption_Object?&
4007
+ TransparencySetting_Object?&
4008
+ StrokeTransparencySetting_Object?&
4009
+ FillTransparencySetting_Object?&
4010
+ ContentTransparencySetting_Object?),
4011
+ (Link_Object*&
4012
+ SVG_Object*&
4013
+ Graphic_Object*)
4014
+ )
4015
+ }
4016
+
4017
+ GridDataInformation_Object = element GridDataInformation {
4018
+ attribute FontStyle { xsd:string }?,
4019
+ attribute PointSize { xsd:double }?,
4020
+ attribute CharacterAki { xsd:double }?,
4021
+ attribute LineAki { xsd:double }?,
4022
+ attribute HorizontalScale { xsd:double }?,
4023
+ attribute VerticalScale { xsd:double }?,
4024
+ attribute LineAlignment { LineAlignment_EnumValue }?,
4025
+ attribute GridAlignment { GridAlignment_EnumValue }?,
4026
+ attribute CharacterAlignment { CharacterAlignment_EnumValue }?,
4027
+ attribute GridView { GridViewSettings_EnumValue }?,
4028
+ attribute CharacterCountLocation { CharacterCountLocation_EnumValue }?,
4029
+ attribute CharacterCountSize { xsd:double }?,
4030
+ element Properties {
4031
+ element AppliedFont {
4032
+ (object_type, xsd:string ) |
4033
+ (string_type, xsd:string )
4034
+ }?
4035
+ }
4036
+ ?
4037
+ }
4038
+
4039
+ TextFramePreference_Object = element TextFramePreference {
4040
+ attribute FootnotesEnableOverrides { xsd:boolean }?,
4041
+ attribute FootnotesSpanAcrossColumns { xsd:boolean }?,
4042
+ attribute FootnotesMinimumSpacing { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4043
+ attribute FootnotesSpaceBetween { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4044
+ attribute TextColumnCount { xsd:int {minInclusive="1" maxInclusive="40"} }?,
4045
+ attribute TextColumnGutter { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4046
+ attribute TextColumnFixedWidth { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4047
+ attribute UseFixedColumnWidth { xsd:boolean }?,
4048
+ attribute FirstBaselineOffset { FirstBaseline_EnumValue }?,
4049
+ attribute MinimumFirstBaselineOffset { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4050
+ attribute VerticalJustification { VerticalJustification_EnumValue }?,
4051
+ attribute VerticalThreshold { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4052
+ attribute IgnoreWrap { xsd:boolean }?,
4053
+ attribute VerticalBalanceColumns { xsd:boolean }?,
4054
+ attribute UseFlexibleColumnWidth { xsd:boolean }?,
4055
+ attribute TextColumnMaxWidth { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4056
+ attribute AutoSizingType { AutoSizingTypeEnum_EnumValue }?,
4057
+ attribute AutoSizingReferencePoint { AutoSizingReferenceEnum_EnumValue }?,
4058
+ attribute UseMinimumHeightForAutoSizing { xsd:boolean }?,
4059
+ attribute MinimumHeightForAutoSizing { xsd:double }?,
4060
+ attribute UseMinimumWidthForAutoSizing { xsd:boolean }?,
4061
+ attribute MinimumWidthForAutoSizing { xsd:double }?,
4062
+ attribute UseNoLineBreaksForAutoSizing { xsd:boolean }?,
4063
+ attribute ColumnRuleOverride { xsd:boolean }?,
4064
+ attribute ColumnRuleOffset { xsd:double {minInclusive="-10000" maxInclusive="10000"} }?,
4065
+ attribute ColumnRuleTopInset { xsd:double {minInclusive="-10000" maxInclusive="10000"} }?,
4066
+ attribute ColumnRuleInsetChainOverride { xsd:boolean }?,
4067
+ attribute ColumnRuleBottomInset { xsd:double {minInclusive="-10000" maxInclusive="10000"} }?,
4068
+ attribute ColumnRuleStrokeWidth { xsd:double {minInclusive="0" maxInclusive="10000"} }?,
4069
+ attribute ColumnRuleStrokeColor { xsd:string }?,
4070
+ attribute ColumnRuleStrokeType { xsd:string }?,
4071
+ attribute ColumnRuleStrokeTint { xsd:double {minInclusive="0" maxInclusive="100"} }?,
4072
+ attribute ColumnRuleOverprintOverride { xsd:boolean }?,
4073
+ element Properties {
4074
+ element InsetSpacing {
4075
+ (unit_type, xsd:double {minInclusive="0" maxInclusive="8640"} ) |
4076
+ (list_type,
4077
+ element ListItem { unit_type, xsd:double {minInclusive="0" maxInclusive="8640"} },
4078
+ element ListItem { unit_type, xsd:double {minInclusive="0" maxInclusive="8640"} },
4079
+ element ListItem { unit_type, xsd:double {minInclusive="0" maxInclusive="8640"} },
4080
+ element ListItem { unit_type, xsd:double {minInclusive="0" maxInclusive="8640"} })
4081
+ }?
4082
+ }
4083
+ ?
4084
+ }
4085
+
4086
+ BaselineFrameGridOption_Object = element BaselineFrameGridOption {
4087
+ attribute UseCustomBaselineFrameGrid { xsd:boolean }?,
4088
+ attribute StartingOffsetForBaselineFrameGrid { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4089
+ attribute BaselineFrameGridRelativeOption { BaselineFrameGridRelativeOption_EnumValue }?,
4090
+ attribute BaselineFrameGridIncrement { xsd:double {minInclusive="1" maxInclusive="8640"} }?,
4091
+ element Properties {
4092
+ element BaselineFrameGridColor { InDesignUIColorType_TypeDef }?
4093
+ }
4094
+ ?
4095
+ }
4096
+
4097
+ TextFrameFootnoteOptionsObject_Object = element TextFrameFootnoteOptionsObject {
4098
+ attribute EnableOverrides { xsd:boolean }?,
4099
+ attribute SpanFootnotesAcross { xsd:boolean }?,
4100
+ attribute MinimumSpacingOption { xsd:double {minInclusive="0" maxInclusive="8640"} }?,
4101
+ attribute SpaceBetweenFootnotes { xsd:double {minInclusive="0" maxInclusive="8640"} }?
4102
+ }
4103
+
4104
+ ContentTransparencySetting_Object = element ContentTransparencySetting {
4105
+ (
4106
+ BlendingSetting_Object?&
4107
+ DropShadowSetting_Object?&
4108
+ FeatherSetting_Object?&
4109
+ InnerShadowSetting_Object?&
4110
+ OuterGlowSetting_Object?&
4111
+ InnerGlowSetting_Object?&
4112
+ BevelAndEmbossSetting_Object?&
4113
+ SatinSetting_Object?&
4114
+ DirectionalFeatherSetting_Object?&
4115
+ GradientFeatherSetting_Object?
4116
+ )
4117
+ }
4118
+
4119
+ Polygon_Object = element Polygon {
4120
+ attribute Self { xsd:string },
4121
+ attribute ContentType { ContentType_EnumValue }?,
4122
+ attribute StoryTitle { xsd:string }?,
4123
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
4124
+ attribute AllowOverrides { xsd:boolean }?,
4125
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
4126
+ (FlexEnum_EnumValue )
4127
+ }?,
4128
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
4129
+ (FlexEnum_EnumValue )
4130
+ }?,
4131
+ attribute Visible { xsd:boolean }?,
4132
+ attribute Name { xsd:string }?,
4133
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
4134
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
4135
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
4136
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
4137
+ attribute TopLeftCornerRadius { xsd:double }?,
4138
+ attribute TopRightCornerRadius { xsd:double }?,
4139
+ attribute BottomLeftCornerRadius { xsd:double }?,
4140
+ attribute BottomRightCornerRadius { xsd:double }?,
4141
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
4142
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
4143
+ attribute FillColor { xsd:string }?,
4144
+ attribute FillTint { xsd:double }?,
4145
+ attribute OverprintFill { xsd:boolean }?,
4146
+ attribute CornerRadius { xsd:double }?,
4147
+ attribute StrokeWeight { xsd:double }?,
4148
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
4149
+ attribute EndCap { EndCap_EnumValue }?,
4150
+ attribute EndJoin { EndJoin_EnumValue }?,
4151
+ attribute StrokeType { xsd:string }?,
4152
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
4153
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
4154
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
4155
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
4156
+ attribute StrokeColor { xsd:string }?,
4157
+ attribute StrokeTint { xsd:double }?,
4158
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
4159
+ attribute GradientFillLength { xsd:double }?,
4160
+ attribute GradientFillAngle { xsd:double }?,
4161
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
4162
+ attribute GradientStrokeLength { xsd:double }?,
4163
+ attribute GradientStrokeAngle { xsd:double }?,
4164
+ attribute OverprintStroke { xsd:boolean }?,
4165
+ attribute GapColor { xsd:string }?,
4166
+ attribute GapTint { xsd:double }?,
4167
+ attribute OverprintGap { xsd:boolean }?,
4168
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
4169
+ attribute Nonprinting { xsd:boolean }?,
4170
+ attribute ItemLayer { xsd:string }?,
4171
+ attribute Locked { xsd:boolean }?,
4172
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
4173
+ attribute GradientFillHiliteLength { xsd:double }?,
4174
+ attribute GradientFillHiliteAngle { xsd:double }?,
4175
+ attribute GradientStrokeHiliteLength { xsd:double }?,
4176
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
4177
+ attribute AppliedObjectStyle { xsd:string }?,
4178
+ attribute CornerOption { CornerOptions_EnumValue }?,
4179
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
4180
+ attribute LeftArrowHeadScale { xsd:double }?,
4181
+ attribute RightArrowHeadScale { xsd:double }?,
4182
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
4183
+ attribute BeforeGroupingLayerReference { xsd:string }?,
4184
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
4185
+ attribute LinkResourceId { xsd:int }?,
4186
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
4187
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
4188
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
4189
+ attribute LinkedSourceTableId { xsd:int }?,
4190
+ element Properties {
4191
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
4192
+ }?&
4193
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
4194
+ }?
4195
+ }
4196
+ ?
4197
+ ,
4198
+ (
4199
+ TextPath_Object*,
4200
+ (FrameFittingOption_Object?&
4201
+ ObjectExportOption_Object?&
4202
+ AnchoredObjectSetting_Object?&
4203
+ AnimationSetting_Object?&
4204
+ TimingSetting_Object?&
4205
+ TextWrapPreference_Object?&
4206
+ LinkedPageItemOption_Object?&
4207
+ InCopyExportOption_Object?&
4208
+ TransparencySetting_Object?&
4209
+ StrokeTransparencySetting_Object?&
4210
+ FillTransparencySetting_Object?),
4211
+ (FormField_Object*&
4212
+ Button_Object*&
4213
+ MultiStateObject_Object*&
4214
+ CheckBox_Object*&
4215
+ ComboBox_Object*&
4216
+ ListBox_Object*&
4217
+ RadioButton_Object*&
4218
+ TextBox_Object*&
4219
+ SignatureField_Object*&
4220
+ Image_Object*&
4221
+ Graphic_Object*&
4222
+ EPS_Object*&
4223
+ WMF_Object*&
4224
+ PICT_Object*&
4225
+ PDF_Object*&
4226
+ Group_Object*&
4227
+ EPSText_Object*&
4228
+ Sound_Object*&
4229
+ Movie_Object*&
4230
+ Oval_Object*&
4231
+ Rectangle_Object*&
4232
+ GraphicLine_Object*&
4233
+ TextFrame_Object*&
4234
+ Polygon_Object*&
4235
+ EndnoteTextFrame_Object*&
4236
+ Link_Object*&
4237
+ HtmlItem_Object*&
4238
+ SVG_Object*&
4239
+ ImportedPage_Object*)
4240
+ )
4241
+ }
4242
+
4243
+ EndnoteTextFrame_Object = element EndnoteTextFrame {
4244
+ attribute Self { xsd:string },
4245
+ attribute ParentStory { xsd:string }?,
4246
+ attribute PreviousTextFrame { xsd:string }?,
4247
+ attribute NextTextFrame { xsd:string }?,
4248
+ attribute ContentType { ContentType_EnumValue }?,
4249
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
4250
+ attribute AllowOverrides { xsd:boolean }?,
4251
+ attribute FlexItemWidthMode { (FlexWidthHeightMode_EnumValue ) |
4252
+ (FlexEnum_EnumValue )
4253
+ }?,
4254
+ attribute FlexItemHeightMode { (FlexWidthHeightMode_EnumValue ) |
4255
+ (FlexEnum_EnumValue )
4256
+ }?,
4257
+ attribute Visible { xsd:boolean }?,
4258
+ attribute Name { xsd:string }?,
4259
+ attribute TopLeftCornerOption { CornerOptions_EnumValue }?,
4260
+ attribute TopRightCornerOption { CornerOptions_EnumValue }?,
4261
+ attribute BottomLeftCornerOption { CornerOptions_EnumValue }?,
4262
+ attribute BottomRightCornerOption { CornerOptions_EnumValue }?,
4263
+ attribute TopLeftCornerRadius { xsd:double }?,
4264
+ attribute TopRightCornerRadius { xsd:double }?,
4265
+ attribute BottomLeftCornerRadius { xsd:double }?,
4266
+ attribute BottomRightCornerRadius { xsd:double }?,
4267
+ attribute HorizontalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
4268
+ attribute VerticalLayoutConstraints { list { DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue ,DimensionsConstraints_EnumValue } }?,
4269
+ attribute FillColor { xsd:string }?,
4270
+ attribute FillTint { xsd:double }?,
4271
+ attribute OverprintFill { xsd:boolean }?,
4272
+ attribute CornerRadius { xsd:double }?,
4273
+ attribute StrokeWeight { xsd:double }?,
4274
+ attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?,
4275
+ attribute EndCap { EndCap_EnumValue }?,
4276
+ attribute EndJoin { EndJoin_EnumValue }?,
4277
+ attribute StrokeType { xsd:string }?,
4278
+ attribute StrokeCornerAdjustment { StrokeCornerAdjustment_EnumValue }?,
4279
+ attribute StrokeDashAndGap { list { xsd:double * } }?,
4280
+ attribute LeftLineEnd { ArrowHead_EnumValue }?,
4281
+ attribute RightLineEnd { ArrowHead_EnumValue }?,
4282
+ attribute StrokeColor { xsd:string }?,
4283
+ attribute StrokeTint { xsd:double }?,
4284
+ attribute GradientFillStart { UnitPointType_TypeDef }?,
4285
+ attribute GradientFillLength { xsd:double }?,
4286
+ attribute GradientFillAngle { xsd:double }?,
4287
+ attribute GradientStrokeStart { UnitPointType_TypeDef }?,
4288
+ attribute GradientStrokeLength { xsd:double }?,
4289
+ attribute GradientStrokeAngle { xsd:double }?,
4290
+ attribute OverprintStroke { xsd:boolean }?,
4291
+ attribute GapColor { xsd:string }?,
4292
+ attribute GapTint { xsd:double }?,
4293
+ attribute OverprintGap { xsd:boolean }?,
4294
+ attribute StrokeAlignment { StrokeAlignment_EnumValue }?,
4295
+ attribute Nonprinting { xsd:boolean }?,
4296
+ attribute ItemLayer { xsd:string }?,
4297
+ attribute Locked { xsd:boolean }?,
4298
+ attribute LocalDisplaySetting { DisplaySettingOptions_EnumValue }?,
4299
+ attribute GradientFillHiliteLength { xsd:double }?,
4300
+ attribute GradientFillHiliteAngle { xsd:double }?,
4301
+ attribute GradientStrokeHiliteLength { xsd:double }?,
4302
+ attribute GradientStrokeHiliteAngle { xsd:double }?,
4303
+ attribute AppliedObjectStyle { xsd:string }?,
4304
+ attribute CornerOption { CornerOptions_EnumValue }?,
4305
+ attribute ArrowHeadAlignment { ArrowHeadAlignmentEnum_EnumValue }?,
4306
+ attribute LeftArrowHeadScale { xsd:double }?,
4307
+ attribute RightArrowHeadScale { xsd:double }?,
4308
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
4309
+ attribute BeforeGroupingLayerReference { xsd:string }?,
4310
+ attribute BeforeGroupingLayerPosition { xsd:int }?,
4311
+ attribute LinkResourceId { xsd:int }?,
4312
+ attribute ParentInterfaceChangeCount { list { xsd:int * } }?,
4313
+ attribute TargetInterfaceChangeCount { list { xsd:int * } }?,
4314
+ attribute LastUpdatedInterfaceChangeCount { list { xsd:int * } }?,
4315
+ attribute LinkedSourceTableId { xsd:int }?,
4316
+ element Properties {
4317
+ element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }*
4318
+ }?&
4319
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
4320
+ }?
4321
+ }
4322
+ ?
4323
+ ,
4324
+ (
4325
+ ObjectExportOption_Object?&
4326
+ TextFramePreference_Object?&
4327
+ AnchoredObjectSetting_Object?&
4328
+ BaselineFrameGridOption_Object?&
4329
+ TextFrameFootnoteOptionsObject_Object?&
4330
+ AnimationSetting_Object?&
4331
+ TimingSetting_Object?&
4332
+ TextWrapPreference_Object?&
4333
+ LinkedPageItemOption_Object?&
4334
+ Link_Object*&
4335
+ TransparencySetting_Object?&
4336
+ GridDataInformation_Object?&
4337
+ SVG_Object*&
4338
+ Graphic_Object*&
4339
+ TextPath_Object*
4340
+ )
4341
+ }
4342
+
4343
+ Page_Object = element Page {
4344
+ attribute Self { xsd:string },
4345
+ attribute TabOrder { list { xsd:string * } }?,
4346
+ attribute AppliedMaster { xsd:string }?,
4347
+ attribute OverrideList { list { xsd:string * } }?,
4348
+ attribute MasterPageTransform { TransformationMatrixType_TypeDef }?,
4349
+ attribute Name { xsd:string }?,
4350
+ attribute AppliedTrapPreset { xsd:string }?,
4351
+ attribute GeometricBounds { list { xsd:double ,xsd:double ,xsd:double ,xsd:double } }?,
4352
+ attribute ItemTransform { TransformationMatrixType_TypeDef }?,
4353
+ attribute AppliedAlternateLayout { xsd:string }?,
4354
+ attribute LayoutRule { LayoutRuleOptions_EnumValue }?,
4355
+ attribute SnapshotBlendingMode { SnapshotBlendingModes_EnumValue }?,
4356
+ attribute OptionalPage { xsd:boolean }?,
4357
+ attribute GridStartingPoint { GridStartingPointOptions_EnumValue }?,
4358
+ attribute UseMasterGrid { xsd:boolean }?,
4359
+ element Properties {
4360
+ element PageColor {
4361
+ (InDesignUIColorType_TypeDef ) |
4362
+ (enum_type, PageColorOptions_EnumValue )
4363
+ }?&
4364
+ element Descriptor { list_type, element ListItem {
4365
+ (string_type, xsd:string ) |
4366
+ (enum_type, PageNumberStyle_EnumValue ) |
4367
+ (bool_type, xsd:boolean ) |
4368
+ (long_type, xsd:int {minInclusive="1" maxInclusive="999999"} )
4369
+ }*
4370
+ }?&
4371
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
4372
+ }?
4373
+ }
4374
+ ?
4375
+ ,
4376
+ (
4377
+ Guide_Object*&
4378
+ MarginPreference_Object?&
4379
+ GridDataInformation_Object?
4380
+ )
4381
+ }
4382
+
4383
+ Guide_Object = element Guide {
4384
+ attribute Self { xsd:string },
4385
+ attribute OverriddenPageItemProps { list { xsd:int * } }?,
4386
+ attribute Orientation { HorizontalOrVertical_EnumValue }?,
4387
+ attribute Location { xsd:double }?,
4388
+ attribute FitToPage { xsd:boolean }?,
4389
+ attribute ViewThreshold { xsd:double {minInclusive="5" maxInclusive="4000"} }?,
4390
+ attribute Locked { xsd:boolean }?,
4391
+ attribute ItemLayer { xsd:string }?,
4392
+ attribute PageIndex { xsd:short }?,
4393
+ attribute GuideType { GuideTypeOptions_EnumValue }?,
4394
+ attribute GuideZone { xsd:double }?,
4395
+ element Properties {
4396
+ element GuideColor { InDesignUIColorType_TypeDef }?&
4397
+ element Label { element KeyValuePair { KeyValuePair_TypeDef }*
4398
+ }?
4399
+ }
4400
+ ?
4401
+ }
4402
+
4403
+ MarginPreference_Object = element MarginPreference {
4404
+ attribute ColumnCount { xsd:int {minInclusive="1" maxInclusive="216"} }?,
4405
+ attribute ColumnGutter { xsd:double {minInclusive="0" maxInclusive="1440"} }?,
4406
+ attribute Top { xsd:double }?,
4407
+ attribute Bottom { xsd:double }?,
4408
+ attribute Left { xsd:double }?,
4409
+ attribute Right { xsd:double }?,
4410
+ attribute ColumnDirection { HorizontalOrVertical_EnumValue }?,
4411
+ attribute ColumnsPositions { list { xsd:double * } }?
4412
+ }
4413
+
4414
+
4415
+ }