ObjectRepositorySchema Schema
ValueType Complex Type
Description
A complex type that enables you to define the fixed (constant) value of the property.
Namespacehttp://www.mercury.com/qtp/ObjectRepository
Base Type
Extension of xs:string
Diagram
ValueType Complex Type
Overview
ValueType Extension of xs:string
A complex type that enables you to define the fixed (constant) value of the property.
RegularExpression optional xs:boolean
Indicates whether the value should be evaluated as a regular expression.
Used By
Attributes
NameTypeUseDefaultFixedDescription
RegularExpressionxs:booleanoptional0 Indicates whether the value should be evaluated as a regular expression.
Remarks
A Property element can have either a Parameter child element or a Value child element.  It cannot have both.
Source
<xs:complexType name="ValueType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>A complex type that enables you to define  the fixed (constant) value of the property.</xs:documentation>
  </xs:annotation>
  <xs:simpleContent>
    <xs:extension base="xs:string">
      <xs:attribute name="RegularExpression" type="xs:boolean" use="optional" default="0">
        <xs:annotation>
          <xs:documentation>Indicates whether the value should be evaluated as a regular expression.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
    </xs:extension>
  </xs:simpleContent>
</xs:complexType>
See Also