IMetabase.GetCurrentStamp

Syntax

GetCurrentStamp: DateTime;

Description

The GetCurrentStamp method returns the current date and time.

Example

Sub Main;

Var

MB: IMetabase;

Begin

Mb:=MetabaseClass.Active;

s:=Mb.GetCurrentStamp;

End Sub Main;

After executing the example the "s" variable stores the current date and time.

See also:

IMetabase