summaryrefslogtreecommitdiffhomepage
path: root/lib/schema/dml-picture.xsd
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2011-11-20 23:22:04 +0900
committerRandy Morgan <[email protected]>2011-11-20 23:22:04 +0900
commite53f04284618713b0a90b7a691425c380e829476 (patch)
tree801fea138160f9af426d62bf94ad5bf97123ece9 /lib/schema/dml-picture.xsd
downloadcaxlsx-e53f04284618713b0a90b7a691425c380e829476.tar.gz
caxlsx-e53f04284618713b0a90b7a691425c380e829476.zip
first commit
Diffstat (limited to 'lib/schema/dml-picture.xsd')
-rw-r--r--lib/schema/dml-picture.xsd23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/schema/dml-picture.xsd b/lib/schema/dml-picture.xsd
new file mode 100644
index 00000000..1dbf0514
--- /dev/null
+++ b/lib/schema/dml-picture.xsd
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns="http://schemas.openxmlformats.org/drawingml/2006/picture"
+ xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" elementFormDefault="qualified"
+ targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/picture">
+ <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
+ schemaLocation="dml-main.xsd"/>
+ <xsd:complexType name="CT_PictureNonVisual">
+ <xsd:sequence>
+ <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
+ <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1"
+ maxOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ <xsd:complexType name="CT_Picture">
+ <xsd:sequence minOccurs="1" maxOccurs="1">
+ <xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/>
+ <xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/>
+ <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ <xsd:element name="pic" type="CT_Picture"/>
+</xsd:schema>