IDynamicInstance.LoadEntireInstance

Syntax

LoadEntireInstance;

Description

The LoadEntireInstance method loads all dictionary elements.

Example

Executing the example requires a form containing the DimensionTree component with the DimensionTree1 identifier, the UiDimension component with the UiDimension1 identifier and the Button component with the Button1 identifier. Determine the UiDimension1 component as data source for the DimensionTree1 component. Data source for the UiDimension1 component must be MDM table dictionary with set dynamic loading of elements.

The example is a handler of the OnClick event for the Button1 component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    Dim: IDynamicInstance;
Begin
    Dim := UiDimension1.DimInstance As IDynamicInstance;
    // Load all dictionary elements
    Dim.LoadEntireInstance;
    // Check that there is no unloaded elements
    Debug.WriteLine("Unloaded elements: " + Dim.UnloadedLeavesTotalCount.ToString);
End Sub Button1OnClick;

On clicking the Button1 button all dictionary elements will be loaded.

See also:

IDynamicInstance