ShowMethodsBar: Boolean;
The ShowMethodsBar property determines whether the modeling panel should be shown in the component.
Available values:
True. Default value. The modeling panel is shown in the component.
False. The modeling panel is not shown in the component.
The modeling panel appearance and its purpose are described in the Main Window of Time Series Database section.
Executing the example requires a form, a button with the Button1 identifier on the form, the LanerBox component with the LanerBox1 identifier, and the UiErAnalyzer component used as a data source for LanerBox. The workbook of the time series database should be loaded to UiErAnalyzer.
This procedure should be assigned as a handler of the OnClick event for the button. The example is executed on clicking the button.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
LanerBox1.ShowMethodsBar := False;
LanerBox1.ShowToolbar := False;
LanerBox1.ShowDimPanel := False;
End Sub Button1OnClick;
After executing the example the modeling panel, toolbar and dimension panel are hidden for the LanerBox component.
See also: