Duration.Compare(Duration, Duration) Method
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.
Compares one Duration value to another.
public:
static int Compare(System::Windows::Duration t1, System::Windows::Duration t2);
public static int Compare (System.Windows.Duration t1, System.Windows.Duration t2);
static member Compare : System.Windows.Duration * System.Windows.Duration -> int
Public Shared Function Compare (t1 As Duration, t2 As Duration) As Integer
Parameters
Returns
If t1
is less than t2
, a negative value that represents the difference. If t1
is equal to t2
, zero. If t1
is greater than t2
, a positive value that represents the difference.
Remarks
Duration instances with a property value of Automatic are a special case with the following return values.
If
t1
is Automatic andt2
is not, -1 is returned.If
t1
is Automatic andt2
is also Automatic, 0 is returned.If
t1
is not Automatic andt2
is Automatic, 1 is returned.