CompareMethod Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the type of comparison to be used when filtering data. This enumeration is used by the Filter
method definitions in the DataManipulator class that take the CompareMethod
argument.
public enum class CompareMethod
public enum CompareMethod
type CompareMethod =
Public Enum CompareMethod
- Inheritance
Fields
Name | Value | Description |
---|---|---|
MoreThan | 0 | If the data point value is more than the compared value, the point is filtered. |
LessThan | 1 | If the data point value is less than the compared value, the point is filtered. |
EqualTo | 2 | If the data point value is equal to the compared value, the point is filtered. |
MoreThanOrEqualTo | 3 | If the data point value more than or equal to the compared value, the point is filtered. |
LessThanOrEqualTo | 4 | If the data point value is less than or equal to the compared value, the point is filtered. |
NotEqualTo | 5 | If the data point value is not equal to the compared value, the point is filtered. |
Remarks
The CompareMethod enumeration represents a comparison type for certain filtering operations.
Note
By default, if the filtering criteria are met, a data point is either removed or marked as empty. However, data points can be filtered even if they do not match the filtering criteria, by setting the FilterMatchedPoints property to false
.
Applies to
.NET