forked from python-openxml/python-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdml-main.rnc
More file actions
2328 lines (2178 loc) · 65.4 KB
/
dml-main.rnc
File metadata and controls
2328 lines (2178 loc) · 65.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
default namespace =
"http://schemas.openxmlformats.org/drawingml/2006/main"
namespace a = "http://schemas.openxmlformats.org/drawingml/2006/main"
namespace o = "urn:schemas-microsoft-com:office:office"
namespace r =
"http://schemas.openxmlformats.org/officeDocument/2006/relationships"
namespace s =
"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
namespace v = "urn:schemas-microsoft-com:vml"
namespace w10 = "urn:schemas-microsoft-com:office:word"
namespace x = "urn:schemas-microsoft-com:office:excel"
a_CT_AudioFile =
r_link,
attribute contentType { xsd:string }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_VideoFile =
r_link,
attribute contentType { xsd:string }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_QuickTimeFile =
r_link,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_AudioCDTime =
attribute track { xsd:unsignedByte },
## default value: 0
attribute time { xsd:unsignedInt }?
a_CT_AudioCD =
element st { a_CT_AudioCDTime },
element end { a_CT_AudioCDTime },
element extLst { a_CT_OfficeArtExtensionList }?
a_EG_Media =
element audioCd { a_CT_AudioCD }
| element wavAudioFile { a_CT_EmbeddedWAVAudioFile }
| element audioFile { a_CT_AudioFile }
| element videoFile { a_CT_VideoFile }
| element quickTimeFile { a_CT_QuickTimeFile }
a_videoFile = element videoFile { a_CT_VideoFile }
a_ST_StyleMatrixColumnIndex = xsd:unsignedInt
a_ST_FontCollectionIndex = "major" | "minor" | "none"
a_ST_ColorSchemeIndex =
"dk1"
| "lt1"
| "dk2"
| "lt2"
| "accent1"
| "accent2"
| "accent3"
| "accent4"
| "accent5"
| "accent6"
| "hlink"
| "folHlink"
a_CT_ColorScheme =
attribute name { xsd:string },
element dk1 { a_CT_Color },
element lt1 { a_CT_Color },
element dk2 { a_CT_Color },
element lt2 { a_CT_Color },
element accent1 { a_CT_Color },
element accent2 { a_CT_Color },
element accent3 { a_CT_Color },
element accent4 { a_CT_Color },
element accent5 { a_CT_Color },
element accent6 { a_CT_Color },
element hlink { a_CT_Color },
element folHlink { a_CT_Color },
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_CustomColor =
attribute name { xsd:string }?,
a_EG_ColorChoice
a_CT_SupplementalFont =
attribute script { xsd:string },
attribute typeface { a_ST_TextTypeface }
a_CT_CustomColorList = element custClr { a_CT_CustomColor }*
a_CT_FontCollection =
element latin { a_CT_TextFont },
element ea { a_CT_TextFont },
element cs { a_CT_TextFont },
element font { a_CT_SupplementalFont }*,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_EffectStyleItem =
a_EG_EffectProperties,
element scene3d { a_CT_Scene3D }?,
element sp3d { a_CT_Shape3D }?
a_CT_FontScheme =
attribute name { xsd:string },
element majorFont { a_CT_FontCollection },
element minorFont { a_CT_FontCollection },
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_FillStyleList = a_EG_FillProperties+
a_CT_LineStyleList = element ln { a_CT_LineProperties }+
a_CT_EffectStyleList = element effectStyle { a_CT_EffectStyleItem }+
a_CT_BackgroundFillStyleList = a_EG_FillProperties+
a_CT_StyleMatrix =
attribute name { xsd:string }?,
element fillStyleLst { a_CT_FillStyleList },
element lnStyleLst { a_CT_LineStyleList },
element effectStyleLst { a_CT_EffectStyleList },
element bgFillStyleLst { a_CT_BackgroundFillStyleList }
a_CT_BaseStyles =
element clrScheme { a_CT_ColorScheme },
element fontScheme { a_CT_FontScheme },
element fmtScheme { a_CT_StyleMatrix },
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_OfficeArtExtension =
attribute uri { xsd:token },
a_CT_OfficeArtExtension_any*
a_CT_OfficeArtExtension_any =
element * - (o:* | v:* | w10:* | x:*) {
anyAttribute*,
mixed { anyElement* }
}
a_ST_Coordinate = a_ST_CoordinateUnqualified | s_ST_UniversalMeasure
a_ST_CoordinateUnqualified =
xsd:long {
minInclusive = "-27273042329600"
maxInclusive = "27273042316900"
}
a_ST_Coordinate32 = a_ST_Coordinate32Unqualified | s_ST_UniversalMeasure
a_ST_Coordinate32Unqualified = xsd:int
a_ST_PositiveCoordinate =
xsd:long { minInclusive = "0" maxInclusive = "27273042316900" }
a_ST_PositiveCoordinate32 = xsd:int { minInclusive = "0" }
a_ST_Angle = xsd:int
a_CT_Angle = attribute val { a_ST_Angle }
a_ST_FixedAngle =
xsd:int { minExclusive = "-5400000" maxExclusive = "5400000" }
a_ST_PositiveFixedAngle =
xsd:int { minInclusive = "0" maxExclusive = "21600000" }
a_CT_PositiveFixedAngle = attribute val { a_ST_PositiveFixedAngle }
a_ST_Percentage = a_ST_PercentageDecimal | s_ST_Percentage
a_ST_PercentageDecimal = xsd:int
a_CT_Percentage = attribute val { a_ST_Percentage }
a_ST_PositivePercentage =
a_ST_PositivePercentageDecimal | s_ST_PositivePercentage
a_ST_PositivePercentageDecimal = xsd:int { minInclusive = "0" }
a_CT_PositivePercentage = attribute val { a_ST_PositivePercentage }
a_ST_FixedPercentage =
a_ST_FixedPercentageDecimal | s_ST_FixedPercentage
a_ST_FixedPercentageDecimal =
xsd:int { minInclusive = "-100000" maxInclusive = "100000" }
a_CT_FixedPercentage = attribute val { a_ST_FixedPercentage }
a_ST_PositiveFixedPercentage =
a_ST_PositiveFixedPercentageDecimal | s_ST_PositiveFixedPercentage
a_ST_PositiveFixedPercentageDecimal =
xsd:int { minInclusive = "0" maxInclusive = "100000" }
a_CT_PositiveFixedPercentage =
attribute val { a_ST_PositiveFixedPercentage }
a_CT_Ratio =
attribute n { xsd:long },
attribute d { xsd:long }
a_CT_Point2D =
attribute x { a_ST_Coordinate },
attribute y { a_ST_Coordinate }
a_CT_PositiveSize2D =
attribute cx { a_ST_PositiveCoordinate },
attribute cy { a_ST_PositiveCoordinate }
a_CT_ComplementTransform = empty
a_CT_InverseTransform = empty
a_CT_GrayscaleTransform = empty
a_CT_GammaTransform = empty
a_CT_InverseGammaTransform = empty
a_EG_ColorTransform =
element tint { a_CT_PositiveFixedPercentage }
| element shade { a_CT_PositiveFixedPercentage }
| element comp { a_CT_ComplementTransform }
| element inv { a_CT_InverseTransform }
| element gray { a_CT_GrayscaleTransform }
| element alpha { a_CT_PositiveFixedPercentage }
| element alphaOff { a_CT_FixedPercentage }
| element alphaMod { a_CT_PositivePercentage }
| element hue { a_CT_PositiveFixedAngle }
| element hueOff { a_CT_Angle }
| element hueMod { a_CT_PositivePercentage }
| element sat { a_CT_Percentage }
| element satOff { a_CT_Percentage }
| element satMod { a_CT_Percentage }
| element lum { a_CT_Percentage }
| element lumOff { a_CT_Percentage }
| element lumMod { a_CT_Percentage }
| element red { a_CT_Percentage }
| element redOff { a_CT_Percentage }
| element redMod { a_CT_Percentage }
| element green { a_CT_Percentage }
| element greenOff { a_CT_Percentage }
| element greenMod { a_CT_Percentage }
| element blue { a_CT_Percentage }
| element blueOff { a_CT_Percentage }
| element blueMod { a_CT_Percentage }
| element gamma { a_CT_GammaTransform }
| element invGamma { a_CT_InverseGammaTransform }
a_CT_ScRgbColor =
attribute r { a_ST_Percentage },
attribute g { a_ST_Percentage },
attribute b { a_ST_Percentage },
a_EG_ColorTransform*
a_CT_SRgbColor =
attribute val { s_ST_HexColorRGB },
a_EG_ColorTransform*
a_CT_HslColor =
attribute hue { a_ST_PositiveFixedAngle },
attribute sat { a_ST_Percentage },
attribute lum { a_ST_Percentage },
a_EG_ColorTransform*
a_ST_SystemColorVal =
"scrollBar"
| "background"
| "activeCaption"
| "inactiveCaption"
| "menu"
| "window"
| "windowFrame"
| "menuText"
| "windowText"
| "captionText"
| "activeBorder"
| "inactiveBorder"
| "appWorkspace"
| "highlight"
| "highlightText"
| "btnFace"
| "btnShadow"
| "grayText"
| "btnText"
| "inactiveCaptionText"
| "btnHighlight"
| "3dDkShadow"
| "3dLight"
| "infoText"
| "infoBk"
| "hotLight"
| "gradientActiveCaption"
| "gradientInactiveCaption"
| "menuHighlight"
| "menuBar"
a_CT_SystemColor =
attribute val { a_ST_SystemColorVal },
attribute lastClr { s_ST_HexColorRGB }?,
a_EG_ColorTransform*
a_ST_SchemeColorVal =
"bg1"
| "tx1"
| "bg2"
| "tx2"
| "accent1"
| "accent2"
| "accent3"
| "accent4"
| "accent5"
| "accent6"
| "hlink"
| "folHlink"
| "phClr"
| "dk1"
| "lt1"
| "dk2"
| "lt2"
a_CT_SchemeColor =
attribute val { a_ST_SchemeColorVal },
a_EG_ColorTransform*
a_ST_PresetColorVal =
"aliceBlue"
| "antiqueWhite"
| "aqua"
| "aquamarine"
| "azure"
| "beige"
| "bisque"
| "black"
| "blanchedAlmond"
| "blue"
| "blueViolet"
| "brown"
| "burlyWood"
| "cadetBlue"
| "chartreuse"
| "chocolate"
| "coral"
| "cornflowerBlue"
| "cornsilk"
| "crimson"
| "cyan"
| "darkBlue"
| "darkCyan"
| "darkGoldenrod"
| "darkGray"
| "darkGrey"
| "darkGreen"
| "darkKhaki"
| "darkMagenta"
| "darkOliveGreen"
| "darkOrange"
| "darkOrchid"
| "darkRed"
| "darkSalmon"
| "darkSeaGreen"
| "darkSlateBlue"
| "darkSlateGray"
| "darkSlateGrey"
| "darkTurquoise"
| "darkViolet"
| "dkBlue"
| "dkCyan"
| "dkGoldenrod"
| "dkGray"
| "dkGrey"
| "dkGreen"
| "dkKhaki"
| "dkMagenta"
| "dkOliveGreen"
| "dkOrange"
| "dkOrchid"
| "dkRed"
| "dkSalmon"
| "dkSeaGreen"
| "dkSlateBlue"
| "dkSlateGray"
| "dkSlateGrey"
| "dkTurquoise"
| "dkViolet"
| "deepPink"
| "deepSkyBlue"
| "dimGray"
| "dimGrey"
| "dodgerBlue"
| "firebrick"
| "floralWhite"
| "forestGreen"
| "fuchsia"
| "gainsboro"
| "ghostWhite"
| "gold"
| "goldenrod"
| "gray"
| "grey"
| "green"
| "greenYellow"
| "honeydew"
| "hotPink"
| "indianRed"
| "indigo"
| "ivory"
| "khaki"
| "lavender"
| "lavenderBlush"
| "lawnGreen"
| "lemonChiffon"
| "lightBlue"
| "lightCoral"
| "lightCyan"
| "lightGoldenrodYellow"
| "lightGray"
| "lightGrey"
| "lightGreen"
| "lightPink"
| "lightSalmon"
| "lightSeaGreen"
| "lightSkyBlue"
| "lightSlateGray"
| "lightSlateGrey"
| "lightSteelBlue"
| "lightYellow"
| "ltBlue"
| "ltCoral"
| "ltCyan"
| "ltGoldenrodYellow"
| "ltGray"
| "ltGrey"
| "ltGreen"
| "ltPink"
| "ltSalmon"
| "ltSeaGreen"
| "ltSkyBlue"
| "ltSlateGray"
| "ltSlateGrey"
| "ltSteelBlue"
| "ltYellow"
| "lime"
| "limeGreen"
| "linen"
| "magenta"
| "maroon"
| "medAquamarine"
| "medBlue"
| "medOrchid"
| "medPurple"
| "medSeaGreen"
| "medSlateBlue"
| "medSpringGreen"
| "medTurquoise"
| "medVioletRed"
| "mediumAquamarine"
| "mediumBlue"
| "mediumOrchid"
| "mediumPurple"
| "mediumSeaGreen"
| "mediumSlateBlue"
| "mediumSpringGreen"
| "mediumTurquoise"
| "mediumVioletRed"
| "midnightBlue"
| "mintCream"
| "mistyRose"
| "moccasin"
| "navajoWhite"
| "navy"
| "oldLace"
| "olive"
| "oliveDrab"
| "orange"
| "orangeRed"
| "orchid"
| "paleGoldenrod"
| "paleGreen"
| "paleTurquoise"
| "paleVioletRed"
| "papayaWhip"
| "peachPuff"
| "peru"
| "pink"
| "plum"
| "powderBlue"
| "purple"
| "red"
| "rosyBrown"
| "royalBlue"
| "saddleBrown"
| "salmon"
| "sandyBrown"
| "seaGreen"
| "seaShell"
| "sienna"
| "silver"
| "skyBlue"
| "slateBlue"
| "slateGray"
| "slateGrey"
| "snow"
| "springGreen"
| "steelBlue"
| "tan"
| "teal"
| "thistle"
| "tomato"
| "turquoise"
| "violet"
| "wheat"
| "white"
| "whiteSmoke"
| "yellow"
| "yellowGreen"
a_CT_PresetColor =
attribute val { a_ST_PresetColorVal },
a_EG_ColorTransform*
a_EG_OfficeArtExtensionList = element ext { a_CT_OfficeArtExtension }*
a_CT_OfficeArtExtensionList = a_EG_OfficeArtExtensionList
a_CT_Scale2D =
element sx { a_CT_Ratio },
element sy { a_CT_Ratio }
a_CT_Transform2D =
## default value: 0
attribute rot { a_ST_Angle }?,
## default value: false
attribute flipH { xsd:boolean }?,
## default value: false
attribute flipV { xsd:boolean }?,
element off { a_CT_Point2D }?,
element ext { a_CT_PositiveSize2D }?
a_CT_GroupTransform2D =
## default value: 0
attribute rot { a_ST_Angle }?,
## default value: false
attribute flipH { xsd:boolean }?,
## default value: false
attribute flipV { xsd:boolean }?,
element off { a_CT_Point2D }?,
element ext { a_CT_PositiveSize2D }?,
element chOff { a_CT_Point2D }?,
element chExt { a_CT_PositiveSize2D }?
a_CT_Point3D =
attribute x { a_ST_Coordinate },
attribute y { a_ST_Coordinate },
attribute z { a_ST_Coordinate }
a_CT_Vector3D =
attribute dx { a_ST_Coordinate },
attribute dy { a_ST_Coordinate },
attribute dz { a_ST_Coordinate }
a_CT_SphereCoords =
attribute lat { a_ST_PositiveFixedAngle },
attribute lon { a_ST_PositiveFixedAngle },
attribute rev { a_ST_PositiveFixedAngle }
a_CT_RelativeRect =
## default value: 0%
attribute l { a_ST_Percentage }?,
## default value: 0%
attribute t { a_ST_Percentage }?,
## default value: 0%
attribute r { a_ST_Percentage }?,
## default value: 0%
attribute b { a_ST_Percentage }?
a_ST_RectAlignment =
"tl" | "t" | "tr" | "l" | "ctr" | "r" | "bl" | "b" | "br"
a_EG_ColorChoice =
element scrgbClr { a_CT_ScRgbColor }
| element srgbClr { a_CT_SRgbColor }
| element hslClr { a_CT_HslColor }
| element sysClr { a_CT_SystemColor }
| element schemeClr { a_CT_SchemeColor }
| element prstClr { a_CT_PresetColor }
a_CT_Color = a_EG_ColorChoice
a_CT_ColorMRU = a_EG_ColorChoice*
a_ST_BlackWhiteMode =
"clr"
| "auto"
| "gray"
| "ltGray"
| "invGray"
| "grayWhite"
| "blackGray"
| "blackWhite"
| "black"
| "white"
| "hidden"
a_AG_Blob = r_embed?, r_link?
a_CT_EmbeddedWAVAudioFile =
r_embed,
attribute name { xsd:string }?
a_CT_Hyperlink =
r_id?,
attribute invalidUrl { xsd:string }?,
attribute action { xsd:string }?,
attribute tgtFrame { xsd:string }?,
attribute tooltip { xsd:string }?,
## default value: true
attribute history { xsd:boolean }?,
## default value: false
attribute highlightClick { xsd:boolean }?,
## default value: false
attribute endSnd { xsd:boolean }?,
element snd { a_CT_EmbeddedWAVAudioFile }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_ST_DrawingElementId = xsd:unsignedInt
a_AG_Locking =
## default value: false
attribute noGrp { xsd:boolean }?,
## default value: false
attribute noSelect { xsd:boolean }?,
## default value: false
attribute noRot { xsd:boolean }?,
## default value: false
attribute noChangeAspect { xsd:boolean }?,
## default value: false
attribute noMove { xsd:boolean }?,
## default value: false
attribute noResize { xsd:boolean }?,
## default value: false
attribute noEditPoints { xsd:boolean }?,
## default value: false
attribute noAdjustHandles { xsd:boolean }?,
## default value: false
attribute noChangeArrowheads { xsd:boolean }?,
## default value: false
attribute noChangeShapeType { xsd:boolean }?
a_CT_ConnectorLocking =
a_AG_Locking,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_ShapeLocking =
a_AG_Locking,
## default value: false
attribute noTextEdit { xsd:boolean }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_PictureLocking =
a_AG_Locking,
## default value: false
attribute noCrop { xsd:boolean }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GroupLocking =
## default value: false
attribute noGrp { xsd:boolean }?,
## default value: false
attribute noUngrp { xsd:boolean }?,
## default value: false
attribute noSelect { xsd:boolean }?,
## default value: false
attribute noRot { xsd:boolean }?,
## default value: false
attribute noChangeAspect { xsd:boolean }?,
## default value: false
attribute noMove { xsd:boolean }?,
## default value: false
attribute noResize { xsd:boolean }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GraphicalObjectFrameLocking =
## default value: false
attribute noGrp { xsd:boolean }?,
## default value: false
attribute noDrilldown { xsd:boolean }?,
## default value: false
attribute noSelect { xsd:boolean }?,
## default value: false
attribute noChangeAspect { xsd:boolean }?,
## default value: false
attribute noMove { xsd:boolean }?,
## default value: false
attribute noResize { xsd:boolean }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_ContentPartLocking =
a_AG_Locking,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_NonVisualDrawingProps =
attribute id { a_ST_DrawingElementId },
attribute name { xsd:string },
attribute descr { xsd:string }?,
## default value: false
attribute hidden { xsd:boolean }?,
attribute title { xsd:string }?,
element hlinkClick { a_CT_Hyperlink }?,
element hlinkHover { a_CT_Hyperlink }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_NonVisualDrawingShapeProps =
## default value: false
attribute txBox { xsd:boolean }?,
element spLocks { a_CT_ShapeLocking }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_NonVisualConnectorProperties =
element cxnSpLocks { a_CT_ConnectorLocking }?,
element stCxn { a_CT_Connection }?,
element endCxn { a_CT_Connection }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_NonVisualPictureProperties =
## default value: true
attribute preferRelativeResize { xsd:boolean }?,
element picLocks { a_CT_PictureLocking }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_NonVisualGroupDrawingShapeProps =
element grpSpLocks { a_CT_GroupLocking }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_NonVisualGraphicFrameProperties =
element graphicFrameLocks { a_CT_GraphicalObjectFrameLocking }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_NonVisualContentPartProperties =
## default value: true
attribute isComment { xsd:boolean }?,
element cpLocks { a_CT_ContentPartLocking }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GraphicalObjectData =
attribute uri { xsd:token },
a_CT_GraphicalObjectData_any*
a_CT_GraphicalObjectData_any =
element * - (o:* | v:* | w10:* | x:*) {
anyAttribute*,
mixed { anyElement* }
}
a_CT_GraphicalObject = element graphicData { a_CT_GraphicalObjectData }
a_graphic = element graphic { a_CT_GraphicalObject }
a_ST_ChartBuildStep =
"category"
| "ptInCategory"
| "series"
| "ptInSeries"
| "allPts"
| "gridLegend"
a_ST_DgmBuildStep = "sp" | "bg"
a_CT_AnimationDgmElement =
## default value: {00000000-0000-0000-0000-000000000000}
attribute id { s_ST_Guid }?,
## default value: sp
attribute bldStep { a_ST_DgmBuildStep }?
a_CT_AnimationChartElement =
## default value: -1
attribute seriesIdx { xsd:int }?,
## default value: -1
attribute categoryIdx { xsd:int }?,
attribute bldStep { a_ST_ChartBuildStep }
a_CT_AnimationElementChoice =
element dgm { a_CT_AnimationDgmElement }
| element chart { a_CT_AnimationChartElement }
a_ST_AnimationBuildType = "allAtOnce"
a_ST_AnimationDgmOnlyBuildType = "one" | "lvlOne" | "lvlAtOnce"
a_ST_AnimationDgmBuildType =
a_ST_AnimationBuildType | a_ST_AnimationDgmOnlyBuildType
a_CT_AnimationDgmBuildProperties =
## default value: allAtOnce
attribute bld { a_ST_AnimationDgmBuildType }?,
## default value: false
attribute rev { xsd:boolean }?
a_ST_AnimationChartOnlyBuildType =
"series" | "category" | "seriesEl" | "categoryEl"
a_ST_AnimationChartBuildType =
a_ST_AnimationBuildType | a_ST_AnimationChartOnlyBuildType
a_CT_AnimationChartBuildProperties =
## default value: allAtOnce
attribute bld { a_ST_AnimationChartBuildType }?,
## default value: true
attribute animBg { xsd:boolean }?
a_CT_AnimationGraphicalObjectBuildProperties =
element bldDgm { a_CT_AnimationDgmBuildProperties }
| element bldChart { a_CT_AnimationChartBuildProperties }
a_CT_BackgroundFormatting = a_EG_FillProperties?, a_EG_EffectProperties?
a_CT_WholeE2oFormatting =
element ln { a_CT_LineProperties }?,
a_EG_EffectProperties?
a_CT_GvmlUseShapeRectangle = empty
a_CT_GvmlTextShape =
element txBody { a_CT_TextBody },
(element useSpRect { a_CT_GvmlUseShapeRectangle }
| element xfrm { a_CT_Transform2D }),
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GvmlShapeNonVisual =
element cNvPr { a_CT_NonVisualDrawingProps },
element cNvSpPr { a_CT_NonVisualDrawingShapeProps }
a_CT_GvmlShape =
element nvSpPr { a_CT_GvmlShapeNonVisual },
element spPr { a_CT_ShapeProperties },
element txSp { a_CT_GvmlTextShape }?,
element style { a_CT_ShapeStyle }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GvmlConnectorNonVisual =
element cNvPr { a_CT_NonVisualDrawingProps },
element cNvCxnSpPr { a_CT_NonVisualConnectorProperties }
a_CT_GvmlConnector =
element nvCxnSpPr { a_CT_GvmlConnectorNonVisual },
element spPr { a_CT_ShapeProperties },
element style { a_CT_ShapeStyle }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GvmlPictureNonVisual =
element cNvPr { a_CT_NonVisualDrawingProps },
element cNvPicPr { a_CT_NonVisualPictureProperties }
a_CT_GvmlPicture =
element nvPicPr { a_CT_GvmlPictureNonVisual },
element blipFill { a_CT_BlipFillProperties },
element spPr { a_CT_ShapeProperties },
element style { a_CT_ShapeStyle }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GvmlGraphicFrameNonVisual =
element cNvPr { a_CT_NonVisualDrawingProps },
element cNvGraphicFramePr { a_CT_NonVisualGraphicFrameProperties }
a_CT_GvmlGraphicalObjectFrame =
element nvGraphicFramePr { a_CT_GvmlGraphicFrameNonVisual },
a_graphic,
element xfrm { a_CT_Transform2D },
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_GvmlGroupShapeNonVisual =
element cNvPr { a_CT_NonVisualDrawingProps },
element cNvGrpSpPr { a_CT_NonVisualGroupDrawingShapeProps }
a_CT_GvmlGroupShape =
element nvGrpSpPr { a_CT_GvmlGroupShapeNonVisual },
element grpSpPr { a_CT_GroupShapeProperties },
(element txSp { a_CT_GvmlTextShape }
| element sp { a_CT_GvmlShape }
| element cxnSp { a_CT_GvmlConnector }
| element pic { a_CT_GvmlPicture }
| element graphicFrame { a_CT_GvmlGraphicalObjectFrame }
| element grpSp { a_CT_GvmlGroupShape })*,
element extLst { a_CT_OfficeArtExtensionList }?
a_ST_PresetCameraType =
"legacyObliqueTopLeft"
| "legacyObliqueTop"
| "legacyObliqueTopRight"
| "legacyObliqueLeft"
| "legacyObliqueFront"
| "legacyObliqueRight"
| "legacyObliqueBottomLeft"
| "legacyObliqueBottom"
| "legacyObliqueBottomRight"
| "legacyPerspectiveTopLeft"
| "legacyPerspectiveTop"
| "legacyPerspectiveTopRight"
| "legacyPerspectiveLeft"
| "legacyPerspectiveFront"
| "legacyPerspectiveRight"
| "legacyPerspectiveBottomLeft"
| "legacyPerspectiveBottom"
| "legacyPerspectiveBottomRight"
| "orthographicFront"
| "isometricTopUp"
| "isometricTopDown"
| "isometricBottomUp"
| "isometricBottomDown"
| "isometricLeftUp"
| "isometricLeftDown"
| "isometricRightUp"
| "isometricRightDown"
| "isometricOffAxis1Left"
| "isometricOffAxis1Right"
| "isometricOffAxis1Top"
| "isometricOffAxis2Left"
| "isometricOffAxis2Right"
| "isometricOffAxis2Top"
| "isometricOffAxis3Left"
| "isometricOffAxis3Right"
| "isometricOffAxis3Bottom"
| "isometricOffAxis4Left"
| "isometricOffAxis4Right"
| "isometricOffAxis4Bottom"
| "obliqueTopLeft"
| "obliqueTop"
| "obliqueTopRight"
| "obliqueLeft"
| "obliqueRight"
| "obliqueBottomLeft"
| "obliqueBottom"
| "obliqueBottomRight"
| "perspectiveFront"
| "perspectiveLeft"
| "perspectiveRight"
| "perspectiveAbove"
| "perspectiveBelow"
| "perspectiveAboveLeftFacing"
| "perspectiveAboveRightFacing"
| "perspectiveContrastingLeftFacing"
| "perspectiveContrastingRightFacing"
| "perspectiveHeroicLeftFacing"
| "perspectiveHeroicRightFacing"
| "perspectiveHeroicExtremeLeftFacing"
| "perspectiveHeroicExtremeRightFacing"
| "perspectiveRelaxed"
| "perspectiveRelaxedModerately"
a_ST_FOVAngle = xsd:int { minInclusive = "0" maxInclusive = "10800000" }
a_CT_Camera =
attribute prst { a_ST_PresetCameraType },
attribute fov { a_ST_FOVAngle }?,
## default value: 100%
attribute zoom { a_ST_PositivePercentage }?,
element rot { a_CT_SphereCoords }?
a_ST_LightRigDirection =
"tl" | "t" | "tr" | "l" | "r" | "bl" | "b" | "br"
a_ST_LightRigType =
"legacyFlat1"
| "legacyFlat2"
| "legacyFlat3"
| "legacyFlat4"
| "legacyNormal1"
| "legacyNormal2"
| "legacyNormal3"
| "legacyNormal4"
| "legacyHarsh1"
| "legacyHarsh2"
| "legacyHarsh3"
| "legacyHarsh4"
| "threePt"
| "balanced"
| "soft"
| "harsh"
| "flood"
| "contrasting"
| "morning"
| "sunrise"
| "sunset"
| "chilly"
| "freezing"
| "flat"
| "twoPt"
| "glow"
| "brightRoom"
a_CT_LightRig =
attribute rig { a_ST_LightRigType },
attribute dir { a_ST_LightRigDirection },
element rot { a_CT_SphereCoords }?
a_CT_Scene3D =
element camera { a_CT_Camera },
element lightRig { a_CT_LightRig },
element backdrop { a_CT_Backdrop }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_Backdrop =
element anchor { a_CT_Point3D },
element norm { a_CT_Vector3D },
element up { a_CT_Vector3D },
element extLst { a_CT_OfficeArtExtensionList }?
a_ST_BevelPresetType =
"relaxedInset"
| "circle"
| "slope"
| "cross"
| "angle"
| "softRound"
| "convex"
| "coolSlant"
| "divot"
| "riblet"
| "hardEdge"
| "artDeco"
a_CT_Bevel =
## default value: 76200
attribute w { a_ST_PositiveCoordinate }?,
## default value: 76200
attribute h { a_ST_PositiveCoordinate }?,
## default value: circle
attribute prst { a_ST_BevelPresetType }?
a_ST_PresetMaterialType =
"legacyMatte"
| "legacyPlastic"
| "legacyMetal"
| "legacyWireframe"
| "matte"
| "plastic"
| "metal"
| "warmMatte"
| "translucentPowder"
| "powder"
| "dkEdge"
| "softEdge"
| "clear"
| "flat"
| "softmetal"
a_CT_Shape3D =
## default value: 0
attribute z { a_ST_Coordinate }?,
## default value: 0
attribute extrusionH { a_ST_PositiveCoordinate }?,
## default value: 0
attribute contourW { a_ST_PositiveCoordinate }?,
## default value: warmMatte
attribute prstMaterial { a_ST_PresetMaterialType }?,
element bevelT { a_CT_Bevel }?,
element bevelB { a_CT_Bevel }?,
element extrusionClr { a_CT_Color }?,
element contourClr { a_CT_Color }?,
element extLst { a_CT_OfficeArtExtensionList }?
a_CT_FlatText =
## default value: 0
attribute z { a_ST_Coordinate }?
a_EG_Text3D =
element sp3d { a_CT_Shape3D }
| element flatTx { a_CT_FlatText }
a_CT_AlphaBiLevelEffect =
attribute thresh { a_ST_PositiveFixedPercentage }
a_CT_AlphaCeilingEffect = empty
a_CT_AlphaFloorEffect = empty
a_CT_AlphaInverseEffect = a_EG_ColorChoice?
a_CT_AlphaModulateFixedEffect =
## default value: 100%
attribute amt { a_ST_PositivePercentage }?
a_CT_AlphaOutsetEffect =
## default value: 0
attribute rad { a_ST_Coordinate }?
a_CT_AlphaReplaceEffect = attribute a { a_ST_PositiveFixedPercentage }