IEtlPlainDataSplit.MoveUp

Syntax

MoveUp(N: Integer);

Parameters

N — condition index.

Description

The MoveUp method moves the condition one position up. Condition index is passed by the N parameter.

Example

Sub Main;

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(0) As IEtlPlainDataSplit;

Object.MoveUp(2);

MBObject.Save;

End Sub Main;

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

See also:

IEtlPlainDataSplit