ILanerResultsBox.ContainerVisible

Syntax

ContainerVisible(ContainerType: LanerBoxContainerType): Boolean;

Parameters

ContainerType. Panel of the LanerResultsBox component.

Description

The ContainerVisible property determines whether a specified panel should be shown. True: show the specified panel, False: hide the specified panel.

Example

Executing the example requires a form, a button with the Button1 name on the form, the LanerBox component, the LanerResultsBox component named LanerResultsBox1 and the UiErAnalyzer component used as a data source for LanerBox and LanerResultsBox. The workbook of the time series database must be loaded to UiErAnalyzer1.

The example is executed on clicking the button.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    LanerResultsBox1.ContainerVisible(LanerBoxContainerType.Chart) := False;
End Sub Button1OnClick;

After executing the example the Chart panel is hidden.

See also:

ILanerResultsBox