Skip to main content

DxSchedulerTimeSpanRange.Union(DxSchedulerTimeSpanRange) Method

Returns the time interval that is a union of the current interval and the specified intervals.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public DxSchedulerTimeSpanRange Union(
    DxSchedulerTimeSpanRange x
)

Parameters

Name Type Description
x DxSchedulerTimeSpanRange

The interval to be united.

Returns

Type Description
DxSchedulerTimeSpanRange

The interval that is a union of the current and specified intervals.

Remarks

The returned interval’s Start property is set to the earliest date among start dates of two intervals. The returned interval’s End property is set to the latest date among end dates of two intervals.

See Also