elml:tablerow

Each element tablerow defines one row of a table.

Element Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
cssClass xs:string optional
label elml:LabelType optional
The attribute label is restricted to 25 characters which can be a random selection from the values 'a-z',
'A-Z', '0-9' and '_'.
labelRef elml:LabelType optional
The attribute labelRef contains the references to a valid label of one other element within a lesson.

Source

<xs:element name="tablerow" maxOccurs="unbounded">
  <xs:annotation>
    <xs:documentation>Each element tablerow defines one row of a table.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:choice maxOccurs="unbounded">
      <xs:element name="tabledata" type="elml:TableCellType" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Each element tabledata defines one table data cell of a table.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="tableheading" type="elml:TableCellType" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Each element tableheading defines one table heading cell of a table.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>
    <xs:attributeGroup ref="elml:CSSClassImp"/>
    <xs:attributeGroup ref="elml:LabelImp"/>
    <xs:attributeGroup ref="elml:LabelRefImp"/>
  </xs:complexType>
</xs:element>

Sample