Suppression Schema
Item Element
Description
A suppressed item.
Namespace(none)
Diagram
Item Element
Overview
Item
A suppressed item.
type required Restriction of xs:string
The type of information used to identify the suppressed item. One of:
•  PID: The process ID of the application.
               Don't record any event from this process.
•  HWND: A window handle.
               Don't record any event on this
               window or descendant windows.
value required xs:string
The identifier of the item to be suppress. The value must be consistent with the type.
Attributes
NameTypeUseDefaultFixedDescription
typeRestriction of xs:stringrequired  The type of information used to identify the suppressed item. One of:
•  PID: The process ID of the application.
               Don't record any event from this process.
•  HWND: A window handle.
               Don't record any event on this
               window or descendant windows.
valuexs:stringrequired  The identifier of the item to be suppress. The value must be consistent with the type.
Source
<xs:element name="Item" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>A suppressed item.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="type" use="required">
      <xs:annotation>
        <xs:documentation>The type of information used to identify the suppressed item. One of:  <p>• PID: Application process ids.</p>   <p>•  HWND: Window handles. </p></xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="HWND">
            <xs:annotation>
              <xs:documentation>Don't record any event on this window or on any if its descendant windows.</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="PID">
            <xs:annotation>
              <xs:documentation>Process ID, don't record any event from this process.</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="value" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>The identifier of the item to be suppress. The value must be consistent with the type.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
See Also