System.DateUtils.DaysPerYear

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

DaysPerYear: array [Boolean] of Word = (365, 366);

C++

extern DELPHI_PACKAGE System::StaticArray<System::Word, 2> DaysPerYear;

Properties

Type Visibility Source Unit Parent
const
variable
public
System.DateUtils.pas
System.DateUtils.hpp
System.DateUtils System.DateUtils

Description

DaysPerYear represents the number of days in a year.

DaysPerYear is an array that indicates the number of days in a year in the Gregorian calendar. DaysPerYear has the value 366 for a leap year and 365, otherwise.

See Also