Skip to main content
A newer version of this page is available. .
Tab

ValidationCompletedEventArgs(Control, String, Boolean, Boolean, Control, Control) Constructor

Initializes a new instance of the ValidationCompletedEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ValidationCompletedEventArgs(
    Control container,
    string validationGroup,
    bool invisibleControlsValidated,
    bool isValid,
    Control firstInvalidControl,
    Control firstVisibleInvalidControl
)

Parameters

Name Type Description
container Control

A Control object representing the container of controls that have been validated.

validationGroup String

A string value that specifies the name of the group of controls that have been validated.

invisibleControlsValidated Boolean

true if both visible and invisible editors that belong to the specified container and group have been validated; false if only visible editors have been validated.

isValid Boolean

true if the validated value is valid; otherwise, false.

firstInvalidControl Control

A Control object representing the first control that has an invalid value.

firstVisibleInvalidControl Control

A Control object representing the first visible control that has an invalid value.

See Also