TimeIntervalT Constructor (JulianDate, JulianDate, Boolean, Boolean) |
Initializes a new interval with the specified start date and stop date,
also specifying whether the start and stop dates are included.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public TimeInterval(
JulianDate start,
JulianDate stop,
bool isStartIncluded,
bool isStopIncluded
)
Public Sub New (
start As JulianDate,
stop As JulianDate,
isStartIncluded As Boolean,
isStopIncluded As Boolean
)
public:
TimeInterval(
JulianDate start,
JulianDate stop,
bool isStartIncluded,
bool isStopIncluded
)
new :
start : JulianDate *
stop : JulianDate *
isStartIncluded : bool *
isStopIncluded : bool -> TimeInterval
Parameters
- start
- Type: AGI.Foundation.TimeJulianDate
The date that starts the interval. - stop
- Type: AGI.Foundation.TimeJulianDate
The date that stops the interval. - isStartIncluded
- Type: SystemBoolean
true if the start date is included in the interval. - isStopIncluded
- Type: SystemBoolean
true if the stop date is included in the interval.
See Also