Show contents 

Dimensions > Dimensions Assembly Interfaces > ICustomDimTree > ICustomDimTree.RootChildren

ICustomDimTree.RootChildren

Syntax

RootChildren: ICustomDimTreeChildren;

Description

The RootChildren property returns list of the tree root elements.

Example

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

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Cube: IStandardCube;
    CustDim: ICustomDimension;
    CustDimTree: ICustomDimTree;
    TreeChild: ICustomDimTreeChildren;
    v: Variant;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("CUBE_1").Edit;
    Cube := MObj As IStandardCube;
    CustDim := Cube.FactDimension.Dimension As ICustomDimension;
    CustDimTree := CustDim.Tree;
    TreeChild := CustDimTree.RootChildren;
    v := TreeChild.Item(TreeChild.Count - 1);
    CustDimTree.Remove(v);
    MObj.Save;
End Sub UserProc;

After executing the example the last root element of fact dimension is removed.

See also:

ICustomDimTree