IPrxSlice.FixedHeader

Syntax

FixedHeader: IPrxSliceHeader;

Description

The FixedHeader property returns an object containing all fixed dimensions of the slice.

Example

Sub Main;

Var

MB: IMetabase;

Report: IPrxReport;

DtSources: IPrxDataSources;

Slices: IPrxSlices;

Slice: IPrxSlice;

FixedSlice: IPrxSliceHeader;

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;

FixedSlice := Slice.FixedHeader;

i := TopSlice.Count;

End Sub Main;

After executing the example the "i" variable contains the number of fixed dimensions of the first slice of the data source. The identifier of the regular report - Report.

See also:

IPrxSlice