Re: how to define an element which can contain any attributes or elements

Michael Burns wrote:

> I want to define an element called "Properties" so that it can have any attributes
> and any elements.

Someone correct me if I'm wrong, but what about:

<element name="Properties">
    <complexType>
        <sequence>
            <any minOccurs="0" maxOccurs="unbounded" />
        </sequence>
        <anyAttribute />
    </complexType>
</element>

mick.

Received on Wednesday, 6 December 2000 16:06:04 UTC