aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/thmutil/Hyperlink.xsd
blob: 15fea84f4a502a03b251f8a9b949a4e7877deedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<element name="Hyperlink">
        <annotation>
            <documentation>Defines a hyperlink.</documentation>
        </annotation>
        <complexType mixed="true">
            <annotation>
                <documentation>
                    Text to display as the link.
                    Mutually exclusive with the StringId attribute and child Text elements.
                </documentation>
            </annotation>
            <choice minOccurs="0" maxOccurs="unbounded">
                <element ref="Text" />
                <element ref="Tooltip" maxOccurs="1" />
            </choice>
            <attributeGroup ref="CommonControlAttributes" />
            <attribute name="FontId" type="xs:string">
                <annotation>
                    <documentation>Identifier to the Font element that serves as the unselected font.</documentation>
                </annotation>
            </attribute>
            <attribute name="HoverFontId" type="xs:string">
                <annotation>
                    <documentation>Identifier to the Font element that serves as the font when the control is hovered over.</documentation>
                </annotation>
            </attribute>
            <attribute name="SelectedFontId" type="xs:string">
                <annotation>
                    <documentation>Identifier to the Font element that serves as the font when the control is selected.</documentation>
                </annotation>
            </attribute>
            <attribute name="StringId" type="xs:nonNegativeInteger">
                <annotation>
                    <documentation>
                        Identifier that references a string resource in the module to define the text for the control.
                    </documentation>
                </annotation>
            </attribute>
        </complexType>
    </element>