Key: Integer;
The Key property returns key of a data source slice.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
DtSources: IPrxDataSources;
Slices: IPrxSlices;
Slice: IPrxSlice;
i: Integer;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
DtSources := Report.DataSources;
Slices := DtSources.Item(0).Slices;
Slice := Slices.Item(0);
Slice.Execute;
i := Slice.Key;
End Sub Main;
After executing the example the "i" variable contains the key of the first slice of the data source. The identifier of the regular report - Report.
See also: