Count: Integer;
The Count property returns number of conditions that reflect binding of input fields to output ones.
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 this example the "i" variable contains number of conditions of the object Split.
See also: