CompareMethod Enum

Definition

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
CompareMethod

Fields

EqualTo 2

If the data point value is equal to the compared value, the point is filtered.

LessThan 1

If the data point value is less than 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.

MoreThan 0

If the data point value is more than 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.

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