tableType

Basic html-like tables

Complex Type Information

Model

Children: tr

Attributes

QName Type Fixed Default Use Inheritable Annotation
id xs:ID optional
style xs:string optional

Used By

Source

<xs:complexType name="tableType">
  <xs:annotation>
    <xs:documentation>Basic html-like tables</xs:documentation>
  </xs:annotation>
  <xs:sequence>
    <xs:element name="tr" maxOccurs="unbounded">
      <xs:complexType>
        <xs:choice maxOccurs="unbounded">
          <xs:element name="th" type="tdType"/>
          <xs:element name="td" type="tdType"/>
        </xs:choice>
        <xs:attribute name="align" type="alignType" use="optional" default="left"/>
      </xs:complexType>
    </xs:element>
  </xs:sequence>
  <xs:attribute name="style" type="xs:string" use="optional"/>
  <xs:attribute name="id" type="xs:ID" use="optional"/>
</xs:complexType>