DayRangeContains(DayRange) Method |
Returns true if the specified DayRange is fully
contained within this DayRange; false
otherwise.
Namespace: DegreeDays.TimeAssembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax public bool Contains(
DayRange testRange
)
Public Function Contains (
testRange As DayRange
) As Boolean
Parameters
- testRange DayRange
- The DayRange to test for containment within
this DayRange.
Return Value
Booleantrue if the first day of
testRange is
equal to or after the first day of this
DayRange,
and the last day of
testRange is equal to or before
the last day of this
DayRange;
false otherwise.
See Also