IMetabase.GetPendingCheckins

Syntax

GetPendingCheckins: IMetabaseObjectDescriptors;

Description

The GetPendingCheckins method returns a description of all repository objects, that are taken for editing.

Example

Sub Main;

Var

MB: IMetabase;

PCheck: IMetabaseObjectDescriptors;

Count: Integer;

Begin

MB:=MetabaseClass.Active;

PCheck:=MB.GetPendingCheckins;

Count:=PCheck.Count;

End Sub Main;

After executing the example the Count variable stores the number of repository objects, taken for editing.

See also:

IMetabase