IEtlPlainIndex.RemoveField

Syntax

RemoveField(Field: Integer);

Parameters

Field is a position of an index field.

Description

The RemoveField method removes an index field, position of which is passed by the Field parameter.

Example

Sub Main;

Var

MB: IMetabase;

Object: IMetabaseObject;

EtlTask: IEtlTask;

Join: IEtlPlainDataJoin;

Index: IEtlPlainIndex;

Begin

MB:=MetabaseClass.Active;

Object:=MB.ItemById("ETL").Edit;

EtlTask:=Object As IEtlTask;

Join:=EtlTask.Item(0) As IEtlPlainDataJoin;

Index:=Join.Index;

Index.RemoveField(0);

Object.Save;

End Sub Main;

After executing this example the first index field is removed. Repository object has the ETL identifier.

See also:

IEtlPlainIndex