Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies the operator to use to filter a query.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
<AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level := AspNetHostingPermissionLevel.Minimal)> _
Public Enumeration FilterOperator
'Usage
Dim instance As FilterOperator
[AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
public enum FilterOperator
Members
| Member name | Description | |
|---|---|---|
| Equals | Tests whether a query value equals a specified value. | |
| StartsWith | Tests whether a query value starts with a specified value. | |
| Contains | Tests whether a query value contains a specified value. | |
| EndsWith | Tests whether a query value ends with a specified value. | |
| NotEquals | Tests whether a query value does not equal a specified value. | |
| Less | Tests whether a query value is less than a specified value. | |
| LessEq | Tests whether a query value is less than or equal to a specified value. | |
| Greater | Tests whether a query value is greater than a specified value. | |
| GreaterEq | Tests whether a query value is greater than or equal to a specified value. |