ParamContainerVisible: Boolean;
The ParamContainerVisible property determines whether the Parameters panel is visible. True: the panel is shown, False: the panel is hidden. This panel can be shown only for calculated series having calculation parameters.
NOTE. This property is outdated, it is recommended to use ILanerResultsBox.ContainerVisible instead.
Executing this 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.ParamContainerVisible := False;
End Sub Button1OnClick;
After executing this example the Parameters panel is hidden.
See also: