IEaxOptionsBase.ShowDestinationsCombo

Syntax

ShowDestinationsCombo: Boolean;

Description

The ShowDestinationsCombo property determines whether the Display Versions drop-down list is shown on the Data Source Parameters tab on the side panel.

Comments

Available values:

Example

Executing the example requires a form with a button named Button1 on the form, the ErAnalyzerDimPanel component named ErAnalyzerDimPanel1 and the UiErAnalyzer component named UiErAnalyzer1 that is used as a data source for ErAnalyzerDimPanel. An express report should be connected to the UiErAnalyzer1 component.

The example is a handler of the OnClick event for a button.

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 Display Versions drop-down list will be hidden.

See also:

IEaxOptionsBase