MinValue: DateTime;
The MinValue property returns the minimum value of the DateTime type.
Sub Main;
Var
d: DateTime;
Begin
d := DateTime.MinValue;
End Sub Main;
After executing the example the "d" variable stores the minimum value of the DateTime type (01.01.0100).
See also: