aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/thmutil/Billboard.xsd
blob: 5fac92dcefc1860b3152ac4a871784a833163a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<element name="Billboard">
        <annotation>
            <documentation>Defines a control that rotates through a set of panels on a specified interval.</documentation>
        </annotation>
        <complexType>
            <sequence>
                <element ref="Panel" />
            </sequence>
            <attributeGroup ref="CommonControlAttributes" />
            <attribute name="Interval" type="xs:positiveInteger">
                <annotation>
                    <documentation>
                        Specifies the time to wait before showing the next panel, in milliseconds.
                    </documentation>
                </annotation>
            </attribute>
            <attribute name="Loop" type="YesNoType">
                <annotation>
                    <documentation>Specifies whether the billboard should loop through the panels infinitely.</documentation>
                </annotation>
            </attribute>
        </complexType>
    </element>