[This is preliminary documentation and is subject to change.]

Compares the specified dimension-value pair to this dimension-value pair.

Namespace: Clarion.Framework
Assembly: CLARIONLibrary (in CLARIONLibrary.dll) Version: 6.1.0.7 (6.1.0.7)

Syntax

C#
public int CompareTo(
	DimensionValuePair dv
)

Parameters

dv
Type: Clarion.Framework..::..DimensionValuePair
The dimension-value pair to compare to this dimension-value pair

Return Value

-1 if the specified dimension-value pair is bigger than this dimension-value pair

0 if the two dimension-value pairs are equal

1 if this dimension-value pair is bigger than the specified dimension-value pair

Implements

IComparable<(Of <(<'T>)>)>..::..CompareTo(T)

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf the specified dimension-value pair is null
System..::..InvalidOperationExceptionIf the specified dimension-value pair is not in the same dimension as this dimension-value pair

See Also