-
Notifications
You must be signed in to change notification settings - Fork 7
/
pml-embedding.xsd
121 lines (121 loc) · 5.44 KB
/
pml-embedding.xsd
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
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema elementFormDefault="qualified" targetNamespace="http://schemas.openxmlformats.org/presentationml/2006/main" xmlns="http://schemas.openxmlformats.org/presentationml/2006/main" xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="pml-baseTypes.xsd" />
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd" />
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-shapeMiscellaneous.xsd" />
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-baseTypes.xsd" />
<xsd:attributeGroup name="AG_Ole">
<xsd:attribute name="spid" type="a:ST_ShapeID" use="required">
<xsd:annotation>
<xsd:documentation>OLE Object Shape ID</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="name" type="xsd:string" use="optional" default="">
<xsd:annotation>
<xsd:documentation>OLE Object Name</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="showAsIcon" type="xsd:boolean" use="optional" default="false">
<xsd:annotation>
<xsd:documentation>Show OLE Object As Icon</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="r:id" use="optional">
<xsd:annotation>
<xsd:documentation>Relationship ID</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="imgW" type="a:ST_PositiveCoordinate32" use="optional">
<xsd:annotation>
<xsd:documentation>Image Width</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="imgH" type="a:ST_PositiveCoordinate32" use="optional">
<xsd:annotation>
<xsd:documentation>Image Height</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
<xsd:simpleType name="ST_OleObjectFollowColorScheme">
<xsd:annotation>
<xsd:documentation>OLE Object to Follow Color Scheme</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="none">
<xsd:annotation>
<xsd:documentation>None</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="full">
<xsd:annotation>
<xsd:documentation>Full</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="textAndBackground">
<xsd:annotation>
<xsd:documentation>Text and Background</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="CT_OleObjectEmbed">
<xsd:sequence>
<xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attribute name="followColorScheme" type="ST_OleObjectFollowColorScheme" use="optional" default="none">
<xsd:annotation>
<xsd:documentation>Color Scheme Properties for OLE Object</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_OleObjectLink">
<xsd:sequence>
<xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attribute name="updateAutomatic" type="xsd:boolean" use="optional" default="false">
<xsd:annotation>
<xsd:documentation>Update Linked OLE Objects Automatically</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_OleObject">
<xsd:choice minOccurs="1" maxOccurs="1">
<xsd:element name="embed" type="CT_OleObjectEmbed">
<xsd:annotation>
<xsd:documentation>Embedded OLE Object or Control</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="link" type="CT_OleObjectLink">
<xsd:annotation>
<xsd:documentation>Linked OLE Object or Control</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:attributeGroup ref="AG_Ole" />
<xsd:attribute name="progId" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>OLE ProgID</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:element name="oleObj" type="CT_OleObject">
<xsd:annotation>
<xsd:documentation>Global Element for OLE Objects and Controls</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="CT_Control">
<xsd:sequence>
<xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attributeGroup ref="AG_Ole" />
</xsd:complexType>
<xsd:complexType name="CT_ControlList">
<xsd:sequence>
<xsd:element name="control" type="CT_Control" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Embedded Control</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>