DateTimeInterval Constructor (DateTime, Boolean) |
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.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public 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 -> DateTimeInterval
Parameters
- p_Time
- Type: SystemDateTime
A point in time. - after
- Type: SystemBoolean
if true, only set the left bound of the interval. Otherwise only the right bound of it.
See Also