DateTimeInterval(DateTime, Boolean) Constructor |
Instantiates an open DateInterval.
If 'after' is true,
IsInInterval(DateTime) returns true for all
all time points after the specified p_Time.
If 'after' is false,
IsInInterval(DateTime) returns true for all
all time points that are before the p_Time specified.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic DateTimeInterval(
DateTime p_Time,
bool after
)
Public Sub New (
p_Time As DateTime,
after As Boolean
)
public:
DateTimeInterval(
DateTime p_Time,
bool after
)
new :
p_Time : DateTime *
after : bool -> DateTimeIntervalParameters
- p_Time DateTime
- A point in time.
- after Boolean
- if true, only set the left bound of the interval. Otherwise only the right bound of it.
See Also