Suppression Schema
Suppress Element
Description
The items to which dynamic suppression is applied.
Namespace(none)
Diagram
Item ElementSequenceSuppress Element
Overview
Suppress
The items to which dynamic suppression is applied.
Sequence 1..∞
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.
Source
<xs:element name="Suppress" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The items to which dynamic suppression is applied.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence maxOccurs="unbounded">
      <xs:element name="Item">
        <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>
    </xs:sequence>
  </xs:complexType>
</xs:element>
See Also