Date.IsInPreviousYear
Date.IsInPreviousYear(dateTime as any) as nullable logical
指示在前一年中给定的日期时间值 dateTime
是否出现,它由系统上的当前日期和时间确定。
dateTime
: 要进行求值的date
、datetime
或datetimezone
值。
示例:
确定当前系统时间之前的那个年度是否处于前一年。
使用情况:
Date.IsInPreviousYear(Date.AddYears(DateTime.FixedLocalNow(), -1))
输出:
true