ContainerVisible(ContainerType: LanerBoxContainerType): Boolean;
ContainerType. Panel of the LanerResultsBox component.
The ContainerVisible property determines whether a specified panel should be shown. True: show the specified panel, False: hide the specified panel.
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: