ExternalTypeInfo Element

Description

External type library information for the test object class.

Important Information

Use this element when the list of operations for this test object class is stored in an external type library. If required, you can specify an external type library in addition to defining operations in the XML file.

Note for .NET Add-in users: Do not use this element for the .NET Add-in.

Attributes

NameTypeUseDefaultDescription
CLSIDstringrequired The class ID of the test object class. This is used to locate the type information inside the type library.
TypeLibraryPathstringrequired The file system path to the type library file.

Used By

Source

<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ExternalTypeInfo">
    <xs:annotation>
        <xs:documentation>External type library information for the test object class.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
        <xs:attribute name="TypeLibraryPath" type="xs:string" use="required">
            <xs:annotation>
                <xs:documentation>The file system path to the type library file.</xs:documentation>
            </xs:annotation>
        </xs:attribute>
        <xs:attribute name="CLSID" type="xs:string" use="required">
            <xs:annotation>
                <xs:documentation>The class ID of the test object class.</xs:documentation>
            </xs:annotation>
        </xs:attribute>
    </xs:complexType>
</xs:element>