DateTime.Second

Syntax

Second: Integer;

Description

The Second property returns the number of seconds from the current variable.

Example

Sub UserProc;
Var
    i: Integer;
    DT: DateTime;
Begin
    DT := DateTime.Now;
    i := DT.Second;
End Sub UserProc;

After executing the example the "i" variable contains the number of seconds from the "DT" variable.

See also:

DateTime