UpdateElementDependencies(Element: Integer);
Element. Element key.
The UpdateElementDependencies method updates a link to the Link element by the key.
To update all links to the Link element, use the IRdsDictionary.UpdateElementsDependencies method.
Executing the example requires that the repository contains a dictionary with the DIM identifier that contains the elements referring to elements of other objects.
Add links to the Metabase, Rds system assemblies.
Sub UserProc;
Var
MB: IMetabase;
MObj: IMetabaseObject;
Dict: IRdsDictionary;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("DIM").Bind;
Dict := MObj As IRdsDictionary;
Dict.UpdateElementDependencies(1);
End Sub UserProc;
After executing the example the link to the Link element is updated with the 1 key.
See also: