Show contents 

Report > Report Assembly Interfaces > IPrxSlice > IPrxSlice.Name

IPrxSlice.Name

Syntax

Name: String;

Description

The Name property determines the name of a slice of a data source of the regular report.

Example

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Report: IPrxReport;
    DtSources: IPrxDataSources;
    Slices: IPrxSlices;
    Slice: IPrxSlice;
    s: String;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("REPORT").Bind;
    Report := MObj As IPrxReport;
    DtSources := Report.DataSources;
    Slices := DtSources.Item(0).Slices;
    Slice := Slices.Item(0);
    s := Slice.Name;    
End Sub UserProc;

After executing the example the "s" variable contains the name of the first slice of the first data source of the regular report. The identifier of the regular report - Report.

See also:

IPrxSlice