IEtlPlainDataSplit.Count

Syntax

Count: Integer;

Description

The Count property returns the number of conditions that reflect binding of input fields to output ones.

Example

Sub Main;

Var

MB: IMetabase;

EtlTask: IEtlTask;

Object: IEtlPlainDataSplit;

i: Integer;

Begin

MB:=MetabaseClass.Active;

EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;

Object:=EtlTask.Item(0) As IEtlPlainDataSplit;

i:=Object.Count;

End Sub Main;

After executing the example the "i" variable contains the number of conditions of the Split object.

See also:

IEtlPlainDataSplit