Click or drag to resize

JulianDate Operators

The JulianDate type exposes the following members.

Operators
  NameDescription
Public operatorStatic memberAddition
Adds a Duration to a JulianDate, producing a new Julian date.
Public operatorStatic memberEquality
Returns true if the two dates are exactly equal. To be considered equal, the Day and SecondsOfDay properties must be identical when converted to a common time standard. It is highly recommended that you use EqualsEpsilon(JulianDate, Double) or IsIdentical(JulianDate) instead of this method.
Public operatorStatic memberGreaterThan
Returns true if left occurs after right.
Public operatorStatic memberGreaterThanOrEqual
Returns true if left occurs after or at the same time as right.
Public operatorStatic memberInequality
Returns true if the two dates are NOT exactly equal. To be considered equal, the Day and SecondsOfDay properties must be identical when converted to a common time standard. It is highly recommended that you use EqualsEpsilon(JulianDate, Double) or IsIdentical(JulianDate) instead of this method.
Public operatorStatic memberLessThan
Returns true if left occurs before right.
Public operatorStatic memberLessThanOrEqual
Returns true if left occurs before or at the same time as right.
Public operatorStatic memberSubtraction(JulianDate, Duration)
Subtracts a Duration from a Julian date, yielding a new JulianDate.
Public operatorStatic memberSubtraction(JulianDate, JulianDate)
Subtracts a Julian date from another Julian date, yielding a Duration.
Top
See Also