IDynamicInstance.DeferredIndexSetupFor

Fore Syntax

DeferredIndexSetupFor(Element: Integer; AttrIndex: Integer): Variant;

Fore.NET Syntax

DeferredIndexSetupFor(Element: uinteger; AttrIndex: integer): object;

Parameters

Element. Index of dictionary element.

AttrIndex. Attribute index.

Description

The DeferredIndexSetupFor property sets new value of the element attribute.

Comments

Changes will be applied only after the IDynamicInstance.AccomplishIndexSetup method use.

Fore 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;
    Element: Integer;
Begin
    Dim := UiDimension1.DimInstance As IDynamicInstance;
    Element := DimensionTree1.FocusedElement;
    // Change the Owner attribute value of selected element
    Dim.DeferredIndexSetupFor(Element, 2) := 1;
    // Apply settings of attributes change
    Dim.AccomplishIndexSetup;
End Sub Button1OnClick;

On clicking the Button1 button the Owner attribute value of selected elements will be changed.

Fore.NET Example

The requirements and result of the Fore.NET example execution match with those in the Fore Example. Use Fore.NET analogs instead of Fore components.

Imports Prognoz.Platform.Interop.Dimensions;

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
    Dim: IDynamicInstance;
    Element: uinteger;
Begin
    Dim := uiDimensionNet1.DimInstance As IDynamicInstance;
    Element := dimensionTreeNet1.FocusedElement;
    // Change the Owner attribute value of selected element
    Dim.DeferredIndexSetupFor(Element, 2) := 1;
    // Apply settings of attributes change
    Dim.AccomplishIndexSetup();
End Sub;

See also:

IDynamicInstance