ObjectRepositorySchema Schema
ParameterType Complex Type
Description
A complex type that enables you to define the information for the object repository parameter.
Namespacehttp://www.mercury.com/qtp/ObjectRepository
Base Type
Extension of xs:string
Diagram
ParameterType Complex Type
Overview
ParameterType Extension of xs:string
A complex type that enables you to define the information for the object repository parameter.
Type optional xs:string
The type of parameter. The type of parameter.  For repository parameters in the current version of UFT, the parameter Type is always Repository.
RegularExpression optional xs:boolean
Indicates whether the parameter value should be evaluated as a regular expression.
Used By
Attributes
NameTypeUseDefaultFixedDescription
Typexs:stringoptional  The type of parameter. The type of parameter.  For repository parameters in the current version of UFT, the parameter Type is always Repository.
RegularExpressionxs:booleanoptional0 Indicates whether the parameter value should be evaluated as a regular expression.
Remarks
The value of a property can be a fixed value or it can be parameterized.  Therefore, a Property element can have either a Parameter child element or a Value child element.  It cannot have both.
Source
<xs:complexType name="ParameterType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>A complex type that enables you to define the information for the object repository parameter.</xs:documentation>
  </xs:annotation>
  <xs:simpleContent>
    <xs:extension base="xs:string">
      <xs:attribute name="Type" type="xs:string">
        <xs:annotation>
          <xs:documentation>The type of parameter. </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="RegularExpression" type="xs:boolean" use="optional" default="0">
        <xs:annotation>
          <xs:documentation>Indicates whether the parameter value should be evaluated as a regular expression.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
    </xs:extension>
  </xs:simpleContent>
</xs:complexType>
See Also