[Overview][Constants][Procedures and functions] Reference for unit 'dateutils' (#rtl)

IsPM

Determine whether a time is PM or AM.

Declaration

Source position: dateutil.inc line 83

function IsPM(

  const AValue: TDateTime

):Boolean;

Arguments

AValue

  

Time to check.

Function result

Trueif the time part of AValueis PM (afternoon).

Description

IsPMreturns Trueif the time part of AValueis later then 12:00 (PM, or afternoon).

See also

YearOf

  

Extract the year from a given date.

IsInLeapYear

  

Determine whether a date is in a leap year.

IsToday

  

Check whether a given date is today.

IsSameDay

  

Check if two date/time indications are the same day.

Example

Program Example4;

{ This program demonstrates the IsPM function }

Uses SysUtils,DateUtils;

Begin
  Writeln('Current time is PM : ',IsPM(Now));
End.