ICustomDimElements.Owner

Syntax

Owner(Row: Integer): Variant;

Parameters

Row. Index of child element row.

Description

The Owner property determines primary key of the owner element for the element in the specified row.

Example

Executing the example requires a standard cube with the CUBE_1 identifier.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Cube: IStandardCube;
    CustDim: ICustomDimension;
    DimElems: ICustomDimElements;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("CUBE_1").Edit;
    Cube := MObj As IStandardCube;
    CustDim := Cube.FactDimension.Dimension As ICustomDimension;
    DimElems := CustDim.Elements;
    DimElems.Owner(1) := DimElems.AttributeValue(00);
    MObj.Save;
End Sub UserProc;

After executing the example the element in the second row becomes a child of the element in the first row.

See also:

ICustomDimElements