System.DateUtils.MilliSecondOfTheWeek
Delphi
function MilliSecondOfTheWeek(const AValue: TDateTime): Cardinal;
C++
extern DELPHI_PACKAGE unsigned __fastcall MilliSecondOfTheWeek(const System::TDateTime AValue);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.DateUtils.pas System.DateUtils.hpp |
System.DateUtils | System.DateUtils |
Description
Returns the number of milliseconds between a specified TDateTime value and 12:00:00:00 A.M. of the first day of the week.
Call MilliSecondOfTheWeek to obtain the number of milliseconds between AValue and 12:00:00:00 A.M. on Monday of the week that includes AValue.
Note: MilliSecondOfTheWeek defines the week of AValue according to the ISO 8601 standard. That is, the week starts on Monday and ends on Sunday.
See Also