System.SysUtils.TDayTable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDayTable = array[1..12] of Word;

C++

typedef System::StaticArray<System::Word, 12> TDayTable;

Properties

Type Visibility Source Unit Parent
array
typedef
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

TDayTable is used to hold the number of days of each month of a year.

The TDayTable type declares a static array of 12 Words. It is mainly used by the MonthDays constant to hold the number of days in a month for normal and leap years.

Note: Static arrays are declared with an immutable size.

See Also