FindWxLink(Value: IEtlPlainLink): IWxLink;
Value is a link between ETL task objects.
The FindWxLink method searches and returns an object that contains a visual link between ETL task objects. A link by which search is performed is passed as the Value parameter.
Sub Main;
Var
MB: IMetabase;
EtlTask: IEtlTask;
WxLink: IWxLink;
Begin
MB:=MetabaseClass.Active;
EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;
WxLink:=EtlTask.FindWxLink(EtlTask.Links.Item(0));
End Sub Main;
After executing this example the WxLink variable contains a visual link that corresponds to the first link of ETL task objects. Repository object has the ETL identifier.
See also: