ShowDestinationsCombo: Boolean;
The ShowDestinationsCombo property determines whether drop-down list Layout Options is shown in the Dimensions window. True: show drop-down list, False: hide drop-down list.
Executing the example requires a form, a button named Button1 positioned on this form, the UiErAnalyzer component named UiErAnalyzer1 and the ErAnalyzerDimPanel component. An express report is to be connected to the UiErAnalyzer1 component.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
AnOptions: IEaxAnalyzerOptions;
Begin
AnOptions := UiErAnalyzer1.ErAnalyzer.Options;
AnOptions.ShowDestinationsCombo := False;
End Sub Button1OnClick;
After executing the example the Layout Options menu in the Dimensions window is hidden.
See also: