Skip to main content
A newer version of this page is available. .

TimeInterval.Union(TimeInterval, TimeInterval) Method

Returns a time interval which is composed of the two specified time intervals.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.Core.dll

Declaration

public static TimeInterval Union(
    TimeInterval interval1,
    TimeInterval interval2
)

Parameters

Name Type Description
interval1 TimeInterval

A TimeInterval object which represents the first time interval to be united.

interval2 TimeInterval

A TimeInterval object which represents the second time interval to be united.

Returns

Type Description
TimeInterval

A TimeInterval object representing the union of the two time intervals.

Remarks

The TimeInterval.Start of the returned TimeInterval is set to the TimeInterval.Start time of the time interval which starts first. The TimeInterval.End is set to the TimeInterval.End time of the time interval which ends last.

See Also