IEtlPlainDataSplit.MoveDown

Syntax

MoveDown(N: Integer);

Parameters

N. Condition index.

Description

The MoveDown method moves the condition one position down.

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.MoveDown(2);
    MBObject.Save;
End Sub UserProc;

After executing the example the third condition of the Split object is moved to the fourth position.

See also:

IEtlPlainDataSplit