Controls\Control Element

Description

Maps each custom control to its corresponding custom support class.

Important Information

Your toolkit configuration file should contain one Control element for each supported custom control.

Attributes

NameTypeUseDefaultDescription
Typestringrequired The fully qualified name of the custom class.

Diagram

Control Element (Required, 1 or more elements allowed)Sequence (Required, 1 element allowed)CustomRecordReplay Element (Required, 1 element allowed)Sequence (Required, 1 element allowed)ImplementationClass Element (Required, 1 element allowed)


Children

Used By

Source

<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Control" maxOccurs="unbounded">
    <xs:annotation>
        <xs:documentation>Maps each custom control to its corresponding custom support class.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
        <xs:sequence>
            <xs:element name="CustomRecordReplay">
                <xs:annotation>
                    <xs:documentation>Parent element for the ImplementationClass element.</xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="ImplementationClass" type="xs:string">
                            <xs:annotation>
                                <xs:documentation>The fully qualified name of the custom support class corresponding to the custom class defined in the Control element's Type attribute.</xs:documentation>
                            </xs:annotation>
                        </xs:element>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
        </xs:sequence>
        <xs:attribute name="Type" type="xs:string" use="required">
            <xs:annotation>
                <xs:documentation>The fully qualified name of the custom class.</xs:documentation>
            </xs:annotation>
        </xs:attribute>
    </xs:complexType>
</xs:element>