MetabaseTreeCombo.OnIsDynamicElem

Syntax

Sub OnIsDynamicElem(Sender: Object; Args: IMetabaseTreeNodeSpecialEventArgs);

Begin

//set of operators;

End Sub OnIsDynamicElem;

Parameters

Sender. The parameter that returns the component that generated the event.

Args. The parameter that enables the user to determine event parameters.

Description

The OnIsDynamicElem event is used to set whether a tree of folder child elements is dynamically built.

Comments

The event occurs when a tree is built for each folder, and also for the elements, which are set as folders in the OnIsFolderElem event.

The Node property of event argument can be used to get the folder, for which an event is generated. By default, the Special property of event argument is set to False, and all child elements for Node are built immediately. If the Special property is set to True, the child element tree for Node is not built. The child elements are built dynamically when the element hierarchy is built.

NOTE. The event is relevant if the DelayedFill property is set to False.

See also:

MetabaseTreeCombo