IEtlSource

Assembly: Etl;

Description

The IEtlSource interface is an abstract interface describing possible data sources for the EtlBox component.

Inheritance Hierarchy

IEtlSource

Comments

The interface does not contain its own properties and methods. In the current implementation, the IEtlSource interface supports the UiEtlObject component.

In the specified example, the UiEtlObject component is set up and it is specified as a source for the EtlBox component.

Sub SetSource;
Var
    MB: IMetabase;
Begin
    MB := MetabaseClass.Active;
    UiEtlObject1.EtlTask := MB.ItemById(
"ETLTask").Bind As IEtlTask;
    UiEtlObject1.Active := 
True;
    EtlBox1.Source := UiEtlObject1 
As IEtlSource;
End Sub SetSource;

See also:

ETL Assembly Interfaces