GetPendingCheckins: IMetabaseObjectDescriptors;
The GetPendingCheckins method returns a description of all repository objects, that are taken for editing.
To execute the example, add a link to the Metabase system assembly.
Sub UserProc;
Var
MB: IMetabase;
PCheck: IMetabaseObjectDescriptors;
Count: Integer;
Begin
MB := MetabaseClass.Active;
PCheck := MB.GetPendingCheckins;
Count := PCheck.Count;
End Sub UserProc;
After executing the example the Count variable stores the number of repository objects, taken for editing.
See also: