ILanerBox.ShowMethodsBar

Syntax

ShowMethodsBar: Boolean;

Description

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

Comments

Available Values:

The modeling panel appearance and its purpose are described in the Main Window of Time Series Database section.

Example

Executing the example requires a form, a button with the Button1 identifier located on this form, the LanerBox component LanerBox1 identifier, and the UiErAnalyzer component that is used as data source for LanerBox. The workbook of the time series database is to be loaded to UiErAnalyzer.

This procedure is to be assigned as a handler of the OnClick event for this 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 the LanerBox component.

See also:

ILanerBox|Main window of time series database