Express > Express Assembly Interfaces > ILanerBox > ILanerBox.ShowMethodsBar
ShowMethodsBar: Boolean;
The ShowMethodsBar property determines whether the modeling panel should be shown in the component.
Available values:
True. Default value. The modeling panel is shown in the component.
False. The modeling panel is not shown in the component.
Modeling panel appearance and its purpose are given in the Description of Time Series Analysis Interface section.
Executing the example requires a form with the Button1 button, the LanerBox component named LanerBox1 and the UiErAnalyzer component that is a data source for LanerBox. A workbook of the time series database should be loaded to UiErAnalyzer1.
This procedure should be assigned as a handler of the OnClick event for the button. The example is executed on clicking the button.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
LanerBox1.ShowMethodsBar := False;
LanerBox1.ShowToolbar := False;
LanerBox1.ShowDimPanel := False;
End Sub Button1OnClick;
After executing the example the modeling panel, toolbar and dimension panel are hidden for LanerBox (when multidimensional mode is enabled).
See also: