IPivotDimensionLevelPropertiesCommon.Separated

Syntax

Separated: TriState;

Description

The Separated property determines whether level elements are located in separate columns.

Comments

To get whether level elements are located in separate columns, use IPivotDimensionLevelPropertiesCommon.IsSeparated.

Example

Executing the example requires that the repository contains an express report with the EXPRESS identifier. Report data source is a cube that contains a dimension consisting of several levels.

Add links to the Express, Metabase, and Pivot system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    Express: IEaxAnalyzer;
    Pivot: IPivot;
    LHeader: IPivotHeader;
Begin
    // Get repository
    MB := MetabaseClass.Active;
    // Get express report
    Express := MB.ItemById("EXPRESS").Edit As IEaxAnalyzer;
    // Get display settings of report data table
    Pivot := Express.Pivot;
    // Get collection of dimensions located by rows
    LHeader := Pivot.LeftHeader;
    // Check
    If Not LHeader.IsSeparated Then
        LHeader.Separated := TriState.OnOption;
    End If;
    // Save changes
    (Express As IMetabaseObject).Save;
End Sub UserProc;

After executing the example level elements are located in separate columns.

See also:

IPivotDimensionLevelPropertiesCommon