Timestamp: DateTime;
The Timestamp property returns date and time of the last saving of the repository object.
Sub Main;
Var
MB:IMetabase;
Desc:IMetabaseObjectDescriptor;
Date:Datetime;
Begin
MB:=MetabaseClass.Active;
Desc:=Mb.ItemById("obj111");
Date:=Desc.Timestamp;
End Sub Main;
After executing this example the Date variable contains date and time of the last saving of the object of the metadata base.
See also: