Minute

 (Available in 01 TS COM - TS_COM_DateTimeFromVariant)

Purpose

Get the minute(s) value

Syntax

? oDateTimeFromVariant:Minute

Description

Get the minute(s) value

Returns

DWORD, Minute

Example

? oDateTimeFromVariant:Minute

Source

ACCESS Minute AS DWORD PASCAL CLASS TS_DateTimeFromVariant
LOCAL dwMinute AS DWORD
   TSTrace Enter
   IF SELF:IsValidObject
      dwMinute:=DWORD( SELF:_SystemTime.wMinute )
   ELSE
      TSTrace Warning "!SELF:IsValidObject"
      dwMinute:=0U
   END
   TSTrace Leave
RETURN dwMinute