ArcObjects Library Reference (System)  

ITimeRelationalOperator.Disjoint Method

Indicates whether the input time value falls fully outside of the time extent.

[Visual Basic .NET]
Public Function Disjoint ( _
    ByVal otherTimeValue As ITimeValue _
) As Boolean
[C#]
public bool Disjoint (
    ITimeValue otherTimeValue
);
[C++]
HRESULT Disjoint(
  ITimeValue* otherTimeValue,
  VARIANT_BOOL* Disjoint
);
[C++]

Parameters

otherTimeValue [in]

  otherTimeValue is a parameter of type ITimeValue

Disjoint [out, retval]   Disjoint is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

This is the opposite of the Touches operation.  It can be used to find out if there is a non-zero amount of time between the input time and the current time extent.

See Also

ITimeRelationalOperator Interface