Platform SDK: Exchange Server

IContentCondition::Operator Property

Specifies the content operator for the condition.

IDL Definition

[propget] HRESULT Operator([out, retval] FUZZYLEVEL_TYPES *pVal) 
[propput] HRESULT Operator([in] FUZZYLEVEL_TYPES newVal)

Visual Basic Definition

Property Operator As FUZZYLEVEL_TYPES

Remarks

The following table describes the FUZZYLEVEL_TYPES.

FUZZYLEVEL_TYPES Enumeration

Name Hex Value Description
FULLSTRING 0 Full string
SUBSTRING 1 Sub-string
PREFIX 2 Prefix
IGNORECASE 10000 Ignore case
IGNORENONSPACE 20000 Ignore non-space
LOOSE 40000 Ignore high-bits (maps Unicode to corresponding ANSI values)

You can set the Operator property value to only one of FULLSTRING, SUBSTRING, or PREFIX; you can set the Operator property value to any of IGNORECASE, IGNORENONSPACE, and LOOSE. For example, use &H70000 in a VBScript program to perform a full-string comparison that ignores case, ignores non-space characters, and maps Unicode characters when comparing text strings.