R
Robert Dailey
Hi,
I have a specific element that has 2 attributes. I want to force the
XML to use 1 or more of these attributes in any order. For example:
<Offset x="0" y="1"/>
could be
<Offset x="0"/>
or could be
<Offset y="1"/>
but could NOT be (invalid):
<Offset/>
I want to do this without any schema code duplication (for example, no
duplicating of attribute definitions).
Thanks.
I have a specific element that has 2 attributes. I want to force the
XML to use 1 or more of these attributes in any order. For example:
<Offset x="0" y="1"/>
could be
<Offset x="0"/>
or could be
<Offset y="1"/>
but could NOT be (invalid):
<Offset/>
I want to do this without any schema code duplication (for example, no
duplicating of attribute definitions).
Thanks.