RemoveField(Field: Integer);
Field - index field position.
The RemoveField method removes an index field, which position is passed by the Field parameter.
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 the example the first index field is removed. The repository object has the ETL identifier.
See also: