Show contents 

Express > Express Assembly Interfaces > ILanerBox > ILanerBox.ShowMethodsBar

ILanerBox.ShowMethodsBar

Syntax

ShowMethodsBar: Boolean;

Description

The ShowMethodsBar property determines whether the modeling panel should be shown in the component.

Comments

Available values:

Modeling panel appearance and its purpose are given in the Description of Time Series Analysis Interface section.

Example

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:

ILanerBox