IEtlTask.FindWxLink

Syntax

FindWxLink(Value: IEtlPlainLink): IWxLink;

Parameters

Value - link between ETL task objects.

Description

The FindWxLink method searches and returns an object that contains a visual link between ETL task objects. A link, by which search is executed, is passed as the Value parameter.

Example

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 the example the WxLink variable contains a visual link that corresponds to the first link of ETL task objects. The repository object has the ETL identifier.

See also:

IEtlTask