ElementsActive: Boolean;
ElementsActive: boolean;
The ElementsActive property switches between the Be Elements and Be Levels selection modes.
The property will be applied only when theBy Elements and Levels selection mode is enabled.
Available values:
True (by default). The By Elements selection mode is selected.
False. The By Levels selection mode is selected.
Executing the example requires that the form contains the Button component with the Button1 identifier, the DimensionTree component with the DimensionTree1 identifier and the UiDimension component with the UiDimension1 identifier. The calendar dictionary is selected as the source for UiDimension and UiDimension is selected as the source for DimensionTree.
Add a link to the ExtCtrls system assembly.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
DimensionTree1.ElementsActive := Not DimensionTree1.ElementsActive;
End Sub Button1OnClick;
After executing the example, clicking the button switches the selection modes.
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.ExtCtrls;
Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Begin
DimensionTreeNet1.ElementsActive := Not DimensionTreeNet1.ElementsActive;
End Sub;
See also: