Enum FilterOperation
Determines how to filter the data value.
Namespace: FastReport.Data
Assembly: FastReport.OpenSource.dll
Syntax
public enum FilterOperation
Remarks
The "Data value" is a value contained in the datasource which you filter. The "Selected value" is a value you have entered or selected in the dialog control.
Fields
| Name | Description |
|---|---|
| Contains | Data string contains selected value. |
| EndsWith | Data string ends with selected value. |
| Equal | Data value is equal to selected value. |
| GreaterThan | Data value is greater than selected value. |
| GreaterThanOrEqual | Data value is greater than or equal to selected value. |
| LessThan | Data value is less than selected value. |
| LessThanOrEqual | Data value is less than or equal to selected value. |
| NotContains | Data string does not contain selected value. |
| NotEndsWith | Data string does not end with selected value. |
| NotEqual | Data value is not equal to selected value. |
| NotStartsWith | Data string does not start with selected value. |
| StartsWith | Data string starts with selected value. |