Search document properties

Creating a query for document properties is very similar to creating a word query, except that the <property> element is used instead of <key>.

The property query shown below searches for documents whose size (in bytes) is within a specified range of values:

<property NAME="Size">
   <interval>
      <start INCLUSIVE="True">
         <number>10000</number>
      </start>
      <end INCLUSIVE="True">
         <number>19999</number>
      </end>
   </interval>

Document properties are listed in TEXTMLSERVER_DOCUMENT_PROPERTIES.DTD. (To locate this document, run the Advanced v4 query from the TEXTML Server Administration Console.)