M
Matthet
Hi,
I'm defining an element that
is based on simpleType named "myPatternType"
<xsd:element name="MyElement">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="myPatternType">
<xsd:attribute name="myAttr" type="myAttrType"
use="optional"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
I need to add
<xsd:maxLength value="10"> to MyElement
and I can't find a way to do it.
Thx for any help
MAciek
I'm defining an element that
is based on simpleType named "myPatternType"
<xsd:element name="MyElement">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="myPatternType">
<xsd:attribute name="myAttr" type="myAttrType"
use="optional"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
I need to add
<xsd:maxLength value="10"> to MyElement
and I can't find a way to do it.
Thx for any help
MAciek