DxSchedulerDateTimeRange.Union(DxSchedulerDateTimeRange) Method
Returns the range that is a union of the current range and the specified range.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public DxSchedulerDateTimeRange Union(
DxSchedulerDateTimeRange x
)
Parameters
Name | Type | Description |
---|---|---|
x | DxSchedulerDateTimeRange | The range to be united. |
Returns
Type | Description |
---|---|
DxSchedulerDateTimeRange | The range that is a union of the current range and the specified range. |
Remarks
The resulting range’s Start property is set to the earliest date among start dates of two ranges. The resulting ranges’s End property is set to the latest date among end dates of two ranges.
See Also