ResultContainerVisible: Boolean;
The ResultContainerVisible property determines whether the Calculation Results panel is to be shown. True: the panel is shown, False: the panel is hidden.
NOTE. This property is outdated, it is recommended to use ILanerResultsBox.ContainerVisible instead.
Executing the example requires a form, a button named Button1 positioned on this form, the LanerBox component, the LanerResultsBox component named LanerResultsBox1 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.ResultContainerVisible := False;
End Sub Button1OnClick;
After executing the example the Calculation Results panel is hidden.
See also: