RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SysUtils.TDayTable Type

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

Pascal
TDayTable = array[1..12] of Word;
C++
array[1..12] of Word TDayTable;

SysUtils

The TDayTable type declares a static array of 12 Words. It is principally 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.
 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!