ILanerResultsBox.ContainerVisible

Fore Syntax

ContainerVisible(ContainerType: LanerBoxContainerType): Boolean;

Parameters

ContainerType. Panel of the LanerResultsBox component.

Description

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

Fore Example

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

This example is executed on clicking the button.

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

After executing this example the Chart panel is hidden.

See also:

ILanerResultsBox