ILanerResultsBox.NoShowErrors

Syntax

NoShowErrors: Boolean;

Description

The NoShowErrors property determines whether information about errors is hidden.

Comments

To determine whether the specified panel is shown, use the ILanerResultsBox.ContainerVisible property.

Available Values:

Example

Executing the example requires a form containing the LanerBox component named LanerBox1, the LanerResultsBox component named LanerResultsBox1 and the UiErAnalyzer component named UiErAnalyzer1. Select UiErAnalyzer1 as a data source for the LanerBox1 and LanerResultsBox1 components.

The example is a handler of the OnShow event for the form.

Sub OBJ7415FormOnShow(Sender: Object; Args: IEventArgs);
Begin
    LanerResultsBox1.NoShowErrors := True;
End Sub OBJ7415FormOnShow;

After executing the example information about errors is hidden for the LanerResultsBox1 component.

See also:

ILanerResultsBox