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

TimeInterval.Intersect(TimeInterval) Method

Returns a time interval which is the intersection of the current time interval with the specified time interval.

Namespace: DevExpress.XtraScheduler

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

Declaration

public TimeInterval Intersect(
    TimeInterval interval
)

Parameters

Name Type Description
interval TimeInterval

A TimeInterval object which specifies the time interval to be intersected.

Returns

Type Description
TimeInterval

A TimeInterval object representing the intersection of the two time intervals. If the two time intervals don’t intersect, the TimeInterval.Empty value will be returned.

Remarks

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

See Also