Item(Index: Integer): IEtlPlainLink;
Index. An index of ETL task objects link.
The Item property returns linking object, index of which is passed by the Index parameter.
Sub Main;
Var
MB: IMetabase;
EtlTask: IEtlTask;
Links: IEtlPlainLinks;
Link: IEtlPlainLink;
Begin
MB:=MetabaseClass.Active;
EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;
Links:=EtlTask.Links;
Link:=Links.Item(0);
End Sub Main;
After executing this example the Link variable contains the first link of ETL task objects. Repository object has the ETL identifier.
See also: