IEtlPlainDataSplit.Delete

Syntax

Delete(N: Integer);

Parameters

N. Condition index.

Description

The Add method adds a new condition that reflects binding of input fields with output ones.

Example

Sub UserProc;
Var
    MB: IMetabase;
    MBObject: IMetabaseObject;
    EtlTask: IEtlTask;
    Object: IEtlPlainDataSplit;
Begin
    MB := MetabaseClass.Active;
    MBObject := MB.ItemById("ETL").Edit;
    EtlTask := MBObject As IEtlTask;
    Object := EtlTask.Item(0As IEtlPlainDataSplit;
    Object.Delete(0);
    MBObject.Save;
End Sub UserProc;

After executing the example the first condition of the Split object is removed.

See also:

IEtlPlainDataSplit