This document is archived and information here might be outdated.  Recommended version.


ITimeExtent.Union Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > System > ESRI.ArcGIS.esriSystem > Interfaces > IT > ITimeExtent Interface > ITimeExtent.Union Method
ArcGIS Developer Help

ITimeExtent.Union Method

Adjust to ovelap the input time value.

[Visual Basic .NET]
Public Sub Union ( _
    ByVal otherTimeValue As ITimeValue _
)
[C#]
public void Union (
    ITimeValue otherTimeValue
);
[C++]
HRESULT Union(
  ITimeValue* otherTimeValue
);
[C++]
Parameters
otherTimeValue [in]

otherTimeValue is a parameter of type ITimeValue*

Product Availability

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

Description

This method expands the current TimeExtent to include its previous extent and the extent of the passed TimeExtent.  The result is continuous, so any gap between the previous extent and the passed extent is included in the new extent.

See Also

ITimeExtent Interface