<xs:complexType name="CT_Sheet" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="page" type="CT_Page" />
<xs:element name="category" type="CT_Category" />
</xs:choice>
<xs:attribute name="id" type="ST_UniqueID" use="required" />
<xs:attribute name="caption" type="ST_String" use="required" />
<xs:attribute name="pageWidth" type="xs:integer" use="optional" />
<xs:attribute name="pageHeight" type="xs:integer" use="optional" />
<xs:attribute name="hideApply" type="xs:boolean" use="optional" />
<xs:attribute name="resizable" type="xs:boolean" use="optional" />
<xs:attribute name="pageListWidth" type="xs:string" use="optional" />
<xs:attribute name="hasGroups" type="xs:boolean" use="optional" />
</xs:complexType>
|