System.DateUtils.StartOfTheYear

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function StartOfTheYear(const AValue: TDateTime): TDateTime;

C++

extern DELPHI_PACKAGE System::TDateTime __fastcall StartOfTheYear(const System::TDateTime AValue);

Properties

Type Visibility Source Unit Parent
function public
System.DateUtils.pas
System.DateUtils.hpp
System.DateUtils System.DateUtils

Description

Returns a TDateTime that represents 12:00:00:00 A.M. on the first day of the year identified by a specified TDateTime.

StartOfTheYear returns the first expressible moment of the same year as the TDateTime specified by AValue. That is, it replaces the time portion of AValue with 0, changes the day to January 1, and returns the result.

See Also


Code Examples