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.

Example

Sub UserProc;
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 UserProc;

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