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 with the LanerBox1 identifier, the LanerResultsBox component with the LanerResultsBox1 identifier and the UiErAnalyzer component with the UiErAnalyzer1 identifier. 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