Sets the search condition.
Visual Basic |
---|
Public Sub Set( _ ByVal Expression As Expression, _ ByVal ConditionType As MFConditionType, _ ByVal TypedValue As TypedValue _ ) |
Value | Description |
---|---|
MFConditionTypeContains | Contains the given text string (similar to LIKE 'xyz'). |
MFConditionTypeContainsAnyBitwise | Contains any of the bits of the given number. Treats its operands as a vector of bits rather than a single number. |
MFConditionTypeDoesNotContain | Does not contain the given text string (similar to NOT LIKE 'xyz'). |
MFConditionTypeDoesNotContainAnyBitwise | Does not contain any of the bits of the given number. Treats its operands as a vector of bits rather than a single number. |
MFConditionTypeDoesNotMatchWildcardPattern | Does not match the given DOS-style wildcard pattern (such as '*.txt'). |
MFConditionTypeDoesNotStartWith | Does not start with the given text string (similar to NOT LIKE 'xyz%'). |
MFConditionTypeEqual | Must be equal to. |
MFConditionTypeGreaterThan | Must be greater than. |
MFConditionTypeGreaterThanOrEqual | Must be greater than or equal to. |
MFConditionTypeLessThan | Must be less than. |
MFConditionTypeLessThanOrEqual | Must be less than or equal to. |
MFConditionTypeMatchesWildcardPattern | Matches the given DOS-style wildcard pattern (such as '*.txt'). |
MFConditionTypeNotEqual | Must not be equal to. |
MFConditionTypeStartsWith | Starts with the given text string (similar to LIKE 'xyz%'). |
MFConditionTypeStartsWithAtWordBoundary | Starts with the given text string at a word boundary. Similar to LIKE 'xyz%', but evaluated at the beginning of each word). |