StatusComparisonType Enumeration
3/29/2010
Specifies the types of comparison operations used in status events.
Namespace: Microsoft.WindowsMobile.Status
Assembly: Microsoft.WindowsMobile.Status (in microsoft.windowsmobile.status.dll)
Syntax
public enum StatusComparisonType
'Declaration
Public Enumeration StatusComparisonType
Members
Member name | Description |
---|---|
AnyChange | Any state change. This is the default value. |
Contains | The state value contains the comparison value (strings only). |
EndsWith | The state value ends with the comparison value (strings only). |
Equal | The state values are equal. |
Greater | The comparison value is greater than the state value. |
GreaterOrEqual | The comparison value is greater than or equal to the state value. |
Less | The comparison value is less than the state value. |
LessOrEqual | The comparison value is less than or equal to the state value. |
NotEqual | The state values are not equal. |
StartsWith | The state value begins with the comparison value (strings only). |